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
-10
View File
@@ -29,8 +29,6 @@ const (
FieldIsBatchManaged = "is_batch_managed"
// FieldIsSerialManaged holds the string denoting the is_serial_managed field in the database.
FieldIsSerialManaged = "is_serial_managed"
// FieldMaterialType holds the string denoting the material_type field in the database.
FieldMaterialType = "material_type"
// FieldTemplateCode holds the string denoting the template_code field in the database.
FieldTemplateCode = "template_code"
// FieldCreatedAt holds the string denoting the created_at field in the database.
@@ -53,7 +51,6 @@ var Columns = []string{
FieldManageMode,
FieldIsBatchManaged,
FieldIsSerialManaged,
FieldMaterialType,
FieldTemplateCode,
FieldCreatedAt,
FieldUpdatedAt,
@@ -76,8 +73,6 @@ var (
DefaultIsBatchManaged bool
// DefaultIsSerialManaged holds the default value on creation for the "is_serial_managed" field.
DefaultIsSerialManaged bool
// DefaultMaterialType holds the default value on creation for the "material_type" field.
DefaultMaterialType string
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
DefaultCreatedAt func() int64
// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
@@ -137,11 +132,6 @@ func ByIsSerialManaged(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldIsSerialManaged, opts...).ToFunc()
}
// ByMaterialType orders the results by the material_type field.
func ByMaterialType(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldMaterialType, opts...).ToFunc()
}
// ByTemplateCode orders the results by the template_code field.
func ByTemplateCode(opts ...sql.OrderTermOption) OrderOption {
return sql.OrderByField(FieldTemplateCode, opts...).ToFunc()