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
+2 -5
View File
@@ -15,8 +15,8 @@ type InboundOrder func(*sql.Selector)
// InspectionRecord is the predicate function for inspectionrecord builders.
type InspectionRecord func(*sql.Selector)
// InventoryBatch is the predicate function for inventorybatch builders.
type InventoryBatch func(*sql.Selector)
// Inventory is the predicate function for inventory builders.
type Inventory func(*sql.Selector)
// InventoryLock is the predicate function for inventorylock builders.
type InventoryLock func(*sql.Selector)
@@ -39,9 +39,6 @@ type PackageBox func(*sql.Selector)
// SemiFinished is the predicate function for semifinished builders.
type SemiFinished func(*sql.Selector)
// SerialNumber is the predicate function for serialnumber builders.
type SerialNumber func(*sql.Selector)
// StocktakeItem is the predicate function for stocktakeitem builders.
type StocktakeItem func(*sql.Selector)