feat: 完成多模块迭代更新

- 新增过程巡检按步骤上报、数量不符上报、工位退料功能
- 增加工单工程编号三级归属字段
- 新增物料安全库存与缺货预警
- 新增附件管理、退库单管理模块
- 优化生产看板展示逻辑与前端页面文案
- 清理冗余的工艺路线相关代码与备份文件
This commit is contained in:
SunYF
2026-09-15 16:37:39 +08:00
parent 951f3dfecd
commit 4a5e2d7bac
494 changed files with 24702 additions and 139223 deletions
+6
View File
@@ -14,6 +14,8 @@ type Tx struct {
config
// AgvTask is the client for interacting with the AgvTask builders.
AgvTask *AgvTaskClient
// Attachment is the client for interacting with the Attachment builders.
Attachment *AttachmentClient
// Dock is the client for interacting with the Dock builders.
Dock *DockClient
// EventLog is the client for interacting with the EventLog builders.
@@ -38,6 +40,8 @@ type Tx struct {
OutboundOrder *OutboundOrderClient
// Permission is the client for interacting with the Permission builders.
Permission *PermissionClient
// ReturnOrder is the client for interacting with the ReturnOrder builders.
ReturnOrder *ReturnOrderClient
// Role is the client for interacting with the Role builders.
Role *RoleClient
// SemiFinished is the client for interacting with the SemiFinished builders.
@@ -182,6 +186,7 @@ func (tx *Tx) Client() *Client {
func (tx *Tx) init() {
tx.AgvTask = NewAgvTaskClient(tx.config)
tx.Attachment = NewAttachmentClient(tx.config)
tx.Dock = NewDockClient(tx.config)
tx.EventLog = NewEventLogClient(tx.config)
tx.InboundDetail = NewInboundDetailClient(tx.config)
@@ -194,6 +199,7 @@ func (tx *Tx) init() {
tx.OutboundDetail = NewOutboundDetailClient(tx.config)
tx.OutboundOrder = NewOutboundOrderClient(tx.config)
tx.Permission = NewPermissionClient(tx.config)
tx.ReturnOrder = NewReturnOrderClient(tx.config)
tx.Role = NewRoleClient(tx.config)
tx.SemiFinished = NewSemiFinishedClient(tx.config)
tx.StocktakeItem = NewStocktakeItemClient(tx.config)