Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
6d8e9177
Commit
6d8e9177
authored
Sep 13, 2021
by
季圣华
Browse files
增加平台配置
parent
6d547bb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-boot/docs/jsh_erp.sql
View file @
6d8e9177
...
...
@@ -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
...
...
jshERP-boot/docs/数据库更新记录-首次安装请勿使用.txt
View file @
6d8e9177
...
...
@@ -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;
\ No newline at end of file
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', '三联打印地址', '');
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment