优化进销存统计报表的查询速度

This commit is contained in:
季圣华
2021-12-07 22:47:06 +08:00
parent e7d7666b3d
commit 7d208afeba
3 changed files with 33 additions and 30 deletions

View File

@@ -1307,4 +1307,11 @@ where (ub.type='RoleFunctions') and r.tenant_id is not null;
alter table jsh_unit add other_unit_two varchar(50) DEFAULT NULL COMMENT '副单位2' after other_unit;
alter table jsh_unit add other_unit_three varchar(50) DEFAULT NULL COMMENT '副单位3' after other_unit_two;
alter table jsh_unit add ratio_two int(11) DEFAULT NULL COMMENT '比例2' after ratio;
alter table jsh_unit add ratio_three int(11) DEFAULT NULL COMMENT '比例3' after ratio_two;
alter table jsh_unit add ratio_three int(11) DEFAULT NULL COMMENT '比例3' after ratio_two;
-- --------------------------------------------------------
-- 时间 2021年12月07日
-- by jishenghua
-- 更新菜单名称-进货统计改为采购统计
-- --------------------------------------------------------
update jsh_function set name='采购统计' where name='进货统计';