Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
HLS3.0-UPDATE-SQL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
EricChen
HLS3.0-UPDATE-SQL
Commits
74c46cc0
Commit
74c46cc0
authored
Nov 08, 2018
by
袁帅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
日志分析注册脚本
parent
051df8cb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
2 deletions
+35
-2
analysis_init.sql
系统分析模块/register/analysis_init.sql
+35
-2
No files found.
系统分析模块/register/analysis_init.sql
View file @
74c46cc0
begin
\ No newline at end of file
-- ----------------------------
-- 页面注册
-- ----------------------------
sys_function_assign_pkg
.
service_load
(
'modules/ana/ANA001/ana_error_logs.lview'
,
'日志分析'
,
0
,
1
,
0
);
-- ----------------------------
-- 功能定义
-- ----------------------------
sys_function_assign_pkg
.
func_load
(
'ANA001'
,
'日志分析'
,
''
,
'F'
,
'modules/ana/ANA001/ana_error_logs.lview'
,
'10'
,
'ZHS'
);
sys_function_assign_pkg
.
func_load
(
'ANA001'
,
'日志分析'
,
''
,
'F'
,
'modules/ana/ANA001/ana_error_logs.lview'
,
'10'
,
'US'
);
-- ----------------------------
-- 分配页面
-- ----------------------------
--sys_function_assign_pkg.func_service_load('IF100','leaf/interface/queryAllHeader');
-- ----------------------------
-- 创建菜单
-- ----------------------------
SYS_LOAD_SYS_FUNCTION_GRP_PKG
.
SYS_FUNCTION_GROUP_LOAD
(
p_function_group_code
=>
'ANALY'
,
p_function_group_level
=>
1
,
p_language_code
=>
'ZHS'
,
p_function_group_name
=>
'系统分析'
,
p_description
=>
'系统分析'
,
p_enabled_flag
=>
'Y'
,
P_USER_ID
=>-
1
);
SYS_LOAD_SYS_FUNCTION_GRP_PKG
.
SYS_FUNCTION_GROUP_LOAD
(
p_function_group_code
=>
'ANA'
,
p_function_group_level
=>
2
,
p_language_code
=>
'ZHS'
,
p_function_group_name
=>
'系统分析'
,
p_description
=>
'系统分析'
,
p_enabled_flag
=>
'Y'
,
P_USER_ID
=>-
1
);
--菜单分配功能
SYS_LOAD_SYS_FUNCTION_GRP_PKG
.
SYS_FUNCTION_GROUP_ITEM_LOAD
(
p_function_group_code
=>
'ANA'
,
p_function_code
=>
'ANA001'
,
p_enabled_flag
=>
'Y'
,
P_USER_ID
=>-
1
);
-- ----------------------------
-- 角色分配菜单
-- ----------------------------
SYS_LOAD_SYS_DATA_PKG
.
load_role_function_group
(
p_role_code
=>
'ADMIN'
,
p_function_group_code
=>
'ANALY'
,
p_layout_sequence
=>
20
,
p_enabled_flag
=>
'Y'
,
p_parent_function_group_code
=>
'ANALY'
,
p_parent_layout_sequence
=>
20
,
P_USER_ID
=>-
1
);
SYS_LOAD_SYS_DATA_PKG
.
load_role_function_group
(
p_role_code
=>
'ADMIN'
,
p_function_group_code
=>
'ANA'
,
p_layout_sequence
=>
10
,
p_enabled_flag
=>
'Y'
,
p_parent_function_group_code
=>
'ANALY'
,
p_parent_layout_sequence
=>
20
,
P_USER_ID
=>-
1
);
end
;
\ No newline at end of file
Write
Preview
Markdown
is supported
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