增加平台配置

This commit is contained in:
季圣华
2021-09-13 00:58:28 +08:00
parent 6d547bb869
commit 6d8e9177f7
2 changed files with 11 additions and 1 deletions

View File

@@ -1215,4 +1215,12 @@ alter table jsh_log change client_ip client_ip varchar(200) DEFAULT NULL COMMENT
-- 给财务表增加状态字段给历史数据赋值为0
-- --------------------------------------------------------
alter table jsh_account_head add status varchar(1) DEFAULT NULL COMMENT '状态0未审核、1已审核' after file_name;
update jsh_account_head set status=0;
update jsh_account_head set status=0;
-- --------------------------------------------------------
-- 时间 2021年9月12日
-- by jishenghua
-- 插入jsh_platform_config数据控制是否显示三联打印
-- --------------------------------------------------------
INSERT INTO `jsh_platform_config` (`id`, `platform_key`, `platform_key_info`, `platform_value`) VALUES ('4', 'bill_print_flag', '三联打印启用标记', '0');
INSERT INTO `jsh_platform_config` (`id`, `platform_key`, `platform_key_info`, `platform_value`) VALUES ('5', 'bill_print_url', '三联打印地址', '');