refactor(wms): 合并库存表为统一inventory,重构业务逻辑

1. 合并inventory_batch与serial_number为统一inventory表,用manage_mode区分结构件批次/精密件SN
2. 移除冗余的material_type字段与相关逻辑
3. 重构库存查询、检验、入库出库等业务逻辑适配新表结构
4. 调整前端路由与菜单,拆分基础数据为区域维护和物料档案
5. 优化入库校验逻辑,避免空单问题
6. 调整Vite构建配置,关闭自动清空输出目录
7. 为各模块添加详细中文注释,统一业务术语
8. 生成并更新Ent自动代码文件
This commit is contained in:
SunYF
2026-09-02 08:21:11 +08:00
parent 47573e44b0
commit 68f50ee46e
70 changed files with 5895 additions and 9818 deletions
+3 -6
View File
@@ -18,8 +18,8 @@ type Tx struct {
InboundOrder *InboundOrderClient
// InspectionRecord is the client for interacting with the InspectionRecord builders.
InspectionRecord *InspectionRecordClient
// InventoryBatch is the client for interacting with the InventoryBatch builders.
InventoryBatch *InventoryBatchClient
// Inventory is the client for interacting with the Inventory builders.
Inventory *InventoryClient
// InventoryLock is the client for interacting with the InventoryLock builders.
InventoryLock *InventoryLockClient
// Material is the client for interacting with the Material builders.
@@ -34,8 +34,6 @@ type Tx struct {
PackageBox *PackageBoxClient
// SemiFinished is the client for interacting with the SemiFinished builders.
SemiFinished *SemiFinishedClient
// SerialNumber is the client for interacting with the SerialNumber builders.
SerialNumber *SerialNumberClient
// StocktakeItem is the client for interacting with the StocktakeItem builders.
StocktakeItem *StocktakeItemClient
// StocktakeOrder is the client for interacting with the StocktakeOrder builders.
@@ -178,7 +176,7 @@ func (tx *Tx) init() {
tx.InboundDetail = NewInboundDetailClient(tx.config)
tx.InboundOrder = NewInboundOrderClient(tx.config)
tx.InspectionRecord = NewInspectionRecordClient(tx.config)
tx.InventoryBatch = NewInventoryBatchClient(tx.config)
tx.Inventory = NewInventoryClient(tx.config)
tx.InventoryLock = NewInventoryLockClient(tx.config)
tx.Material = NewMaterialClient(tx.config)
tx.OrderMaterialLedger = NewOrderMaterialLedgerClient(tx.config)
@@ -186,7 +184,6 @@ func (tx *Tx) init() {
tx.OutboundOrder = NewOutboundOrderClient(tx.config)
tx.PackageBox = NewPackageBoxClient(tx.config)
tx.SemiFinished = NewSemiFinishedClient(tx.config)
tx.SerialNumber = NewSerialNumberClient(tx.config)
tx.StocktakeItem = NewStocktakeItemClient(tx.config)
tx.StocktakeOrder = NewStocktakeOrderClient(tx.config)
tx.User = NewUserClient(tx.config)