增加仓位货架字段

This commit is contained in:
季圣华
2023-05-19 19:29:34 +08:00
parent b3b7bfadfc
commit 2e659c8a50
5 changed files with 119 additions and 16 deletions

View File

@@ -1480,4 +1480,11 @@ alter table jsh_system_config add update_unit_price_flag varchar(1) DEFAULT '1'
-- by jishenghua
-- 给系统参数表增加超出关联单据启用标记
-- --------------------------------------------------------
alter table jsh_system_config add over_link_bill_flag varchar(1) DEFAULT '0' COMMENT '超出关联单据启用标记0未启用1启用' after update_unit_price_flag;
alter table jsh_system_config add over_link_bill_flag varchar(1) DEFAULT '0' COMMENT '超出关联单据启用标记0未启用1启用' after update_unit_price_flag;
-- --------------------------------------------------------
-- 时间 2023年05月19日
-- by jishenghua
-- 给商品主表增加仓位货架
-- --------------------------------------------------------
alter table jsh_material add position varchar(100) DEFAULT NULL COMMENT '仓位货架' after enable_batch_number;