给系统参数表增加库存审核启用标记

This commit is contained in:
季圣华
2023-03-16 22:41:07 +08:00
parent 3cfadbc031
commit eefb72e16b
10 changed files with 163 additions and 15 deletions

View File

@@ -1457,4 +1457,11 @@ alter table jsh_unit change ratio_two ratio_two decimal(24,3) DEFAULT NULL COMME
alter table jsh_unit change ratio_three ratio_three decimal(24,3) DEFAULT NULL COMMENT '比例3';
alter table jsh_system_config add amount_approval_flag varchar(1) DEFAULT '0' COMMENT '金额审核启用标记0未启用1启用' after multi_bill_type;
alter table jsh_depot_head add source varchar(1) DEFAULT '0' COMMENT '单据来源0-pc1-手机' after purchase_status;
alter table jsh_account_head add source varchar(1) DEFAULT '0' COMMENT '单据来源0-pc1-手机' after status;
alter table jsh_account_head add source varchar(1) DEFAULT '0' COMMENT '单据来源0-pc1-手机' after status;
-- --------------------------------------------------------
-- 时间 2023年03月16日
-- by jishenghua
-- 给系统参数表增加库存审核启用标记
-- --------------------------------------------------------
alter table jsh_system_config add stock_approval_flag varchar(1) DEFAULT '0' COMMENT '库存审核启用标记0未启用1启用' after amount_approval_flag;