增加平台配置

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

@ -687,6 +687,8 @@ CREATE TABLE `jsh_platform_config` (
INSERT INTO `jsh_platform_config` VALUES ('1', 'platform_name', '平台名称', '华夏ERP');
INSERT INTO `jsh_platform_config` VALUES ('2', 'activation_code', '激活码', 'e20cc75acddfe869428bcb8ce5e37b161b2490c81c178fba384938e5b3df5fbac2cd553a8d2f91de');
INSERT INTO `jsh_platform_config` VALUES ('3', 'platform_url', '官方网站', 'http://www.huaxiaerp.com/');
INSERT INTO `jsh_platform_config` VALUES ('4', 'bill_print_flag', '三联打印启用标记', '0');
INSERT INTO `jsh_platform_config` VALUES ('5', 'bill_print_url', '三联打印地址', '');
-- ----------------------------
-- Table structure for jsh_role

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', '三联打印地址', '');