给系统参数表增加超出关联单据启用标记

This commit is contained in:
季圣华
2023-05-10 23:44:24 +08:00
parent 42354e3273
commit 23791518d8
8 changed files with 141 additions and 18 deletions

View File

@@ -1473,4 +1473,11 @@ insert into `jsh_function` (`number`, `name`, `parent_number`, `url`, `component
-- by jishenghua
-- 给系统参数表增加更新单价启用标记
-- --------------------------------------------------------
alter table jsh_system_config add update_unit_price_flag varchar(1) DEFAULT '1' COMMENT '更新单价启用标记0未启用1启用' after force_approval_flag;
alter table jsh_system_config add update_unit_price_flag varchar(1) DEFAULT '1' COMMENT '更新单价启用标记0未启用1启用' after force_approval_flag;
-- --------------------------------------------------------
-- 时间 2023年05月10日
-- by jishenghua
-- 给系统参数表增加超出关联单据启用标记
-- --------------------------------------------------------
alter table jsh_system_config add over_link_bill_flag varchar(1) DEFAULT '0' COMMENT '超出关联单据启用标记0未启用1启用' after update_unit_price_flag;