给零售增加找零字段

This commit is contained in:
季圣华
2021-12-12 23:32:34 +08:00
parent c2c9a465b6
commit 628ead90f8
5 changed files with 128 additions and 35 deletions

View File

@@ -1322,4 +1322,11 @@ insert into `jsh_function`(`number`, `name`, `parent_number`, `url`, `component`
values ('000112', '平台配置', '0001', '/system/platform_config', '/system/PlatformConfigList', '\0', '0175', '', '电脑版', '', 'profile', '0');
insert into `jsh_platform_config`(`platform_key`, `platform_key_info`, `platform_value`)
values ('register_flag', '注册启用标记', '1');
update jsh_msg set status='2' where id=2;
update jsh_msg set status='2' where id=2;
-- --------------------------------------------------------
-- 时间 2021年12月12日
-- by jishenghua
-- 给单据表增加找零字段backAmount
-- --------------------------------------------------------
alter table jsh_depot_head add back_amount decimal(24,6) DEFAULT NULL COMMENT '找零金额' after change_amount;