feat(production): 新增排产支撑功能并移除手动报工页面
- 在main.go中更新排产物料需求注释说明,明确WMS与MES系统间交互方式 - 从前端help.js中移除手动报工(helpScan)相关帮助文档 - 更新工艺流程、绩效报表等页面帮助文档中的报工流程说明 - 在主布局中添加排产支撑菜单项并移除手动报工菜单项 - 新增ProducibleSupport.vue组件实现排产支撑页面功能 - 移除Scan.vue手动报工页面组件 - 更新相关帮助文档内容以匹配新的业务流程
This commit is contained in:
@@ -316,7 +316,7 @@ func (s *Service) expandBindBom(ctx context.Context, productCode, bomName string
|
||||
return bomTreeToBindNodes(s.expandBomTree(ctx, productCode, bomNameOrDefault(bomName), qty, depth, path, s.localBomExistsResolver))
|
||||
}
|
||||
|
||||
// BindRequiredItem 应绑清单条目(工位终端/手动报工展示引导 + 前端齐套计算)
|
||||
// BindRequiredItem 应绑清单条目(工位终端展示引导 + 前端齐套计算)
|
||||
type BindRequiredItem struct {
|
||||
MaterialCode string `json:"materialCode"`
|
||||
MaterialName string `json:"materialName"`
|
||||
@@ -342,7 +342,7 @@ type StationBindPanel struct {
|
||||
StationNames map[int]string `json:"-"`
|
||||
}
|
||||
|
||||
// StationBindPanelData 供工位终端/手动报工页在报工前拉取:本工件本工序该装什么、已装什么
|
||||
// StationBindPanelData 供工位终端在报工前拉取:本工件本工序该装什么、已装什么
|
||||
func (s *Service) StationBindPanelData(ctx context.Context, sn string, processCode int) (*StationBindPanel, error) {
|
||||
_, wo, err := s.workpieceProduct(ctx, s.ctx.EntClient, sn)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user