将经手人里面的业务员改为销售员
This commit is contained in:
@@ -972,7 +972,7 @@ alter table jsh_depot_head change ChangeAmount change_amount decimal(24,6) DEFAU
|
||||
alter table jsh_depot_head change TotalPrice total_price decimal(24,6) DEFAULT NULL COMMENT '合计金额';
|
||||
alter table jsh_depot_head change PayType pay_type varchar(50) DEFAULT NULL COMMENT '付款类型(现金、记账等)';
|
||||
alter table jsh_depot_head change Remark remark varchar(1000) DEFAULT NULL COMMENT '备注';
|
||||
alter table jsh_depot_head change Salesman sales_man varchar(50) DEFAULT NULL COMMENT '业务员(可以多个)';
|
||||
alter table jsh_depot_head change Salesman sales_man varchar(50) DEFAULT NULL COMMENT '销售员(可以多个)';
|
||||
alter table jsh_depot_head change AccountIdList account_id_list varchar(50) DEFAULT NULL COMMENT '多账户ID列表';
|
||||
alter table jsh_depot_head change AccountMoneyList account_money_list varchar(200) DEFAULT NULL COMMENT '多账户金额列表';
|
||||
alter table jsh_depot_head change Discount discount decimal(24,6) DEFAULT NULL COMMENT '优惠率';
|
||||
@@ -1532,4 +1532,11 @@ INSERT INTO `jsh_platform_config` (`platform_key`, `platform_key_info`, `platfor
|
||||
-- 更新功能菜单里面的按钮参数(执行完之后记得要给'租户'角色重新勾选按钮)
|
||||
-- --------------------------------------------------------
|
||||
update jsh_function set push_btn='1,2,3,7' where push_btn='1,2,7';
|
||||
update jsh_function set push_btn='1,3' where number in ('01020101','01020102','01020103','010102');
|
||||
update jsh_function set push_btn='1,3' where number in ('01020101','01020102','01020103','010102');
|
||||
|
||||
-- --------------------------------------------------------
|
||||
-- 时间 2023年11月1日
|
||||
-- by jishenghua
|
||||
-- 将经手人里面的业务员改为销售员
|
||||
-- --------------------------------------------------------
|
||||
update jsh_person set type='销售员' where type='业务员';
|
||||
Reference in New Issue
Block a user