给系统配置增加先审核后打印的开关功能

This commit is contained in:
jishenghua
2024-08-22 00:20:50 +08:00
parent 9926cc18e1
commit 69ca5d2303
7 changed files with 111 additions and 495 deletions

View File

@@ -1595,4 +1595,11 @@ update jsh_system_config set multi_account_flag='1' where multi_account_flag='0'
-- 给实时库存表增加当前单价字段
-- --------------------------------------------------------
alter table jsh_system_config add move_avg_price_flag varchar(1) DEFAULT '0' COMMENT '移动平均价启用标记0未启用1启用' after multi_account_flag;
alter table jsh_material_current_stock add current_unit_price decimal(24,6) DEFAULT NULL COMMENT '当前单价' after current_number;
alter table jsh_material_current_stock add current_unit_price decimal(24,6) DEFAULT NULL COMMENT '当前单价' after current_number;
-- --------------------------------------------------------
-- 时间 2024年8月21日
-- by jishenghua
-- 给系统参数表增加先审核后打印启用标记,启用后,零售、采购、销售等单据,都需要先审核之后才能进行打印
-- --------------------------------------------------------
alter table jsh_system_config add audit_print_flag varchar(1) DEFAULT '0' COMMENT '先审核后打印启用标记0未启用1启用' after move_avg_price_flag;