给系统参数表增加出入库管理启用标记

This commit is contained in:
季圣华
2023-12-01 19:30:52 +08:00
parent cccd9d2c76
commit 9fa4eacee6
2 changed files with 11 additions and 3 deletions

View File

@@ -1539,4 +1539,11 @@ update jsh_function set push_btn='1,3' where number in ('01020101','01020102','0
-- by jishenghua
-- 将经手人里面的业务员改为销售员
-- --------------------------------------------------------
update jsh_person set type='销售员' where type='业务员';
update jsh_person set type='销售员' where type='业务员';
-- --------------------------------------------------------
-- 时间 2023年12月01日
-- by jishenghua
-- 给系统参数表增加出入库管理启用标记,开启后,采购入库、采购退货、销售出库、销售退货单据都会经过出入库流程,适合有独立仓库的场景。
-- --------------------------------------------------------
alter table jsh_system_config add in_out_manage_flag varchar(1) DEFAULT '0' COMMENT '出入库管理启用标记0未启用1启用' after over_link_bill_flag;