Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
leaf-hlcm
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
hlcm
leaf-hlcm
Commits
3dae48dc
Commit
3dae48dc
authored
Nov 20, 2019
by
stone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[fix]修改授信取值逻辑
parent
949d2912
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
INITIALIZE_SYSCODE_CREDIT_STATUS.sql
...tabase/Init/Sys_code/INITIALIZE_SYSCODE_CREDIT_STATUS.sql
+2
-0
hls_bp_master_credit.lview
...ain/webapp/modules/hls/HLS361N/hls_bp_master_credit.lview
+3
-3
hls_bp_master_credit_confirm.lview
...pp/modules/hls/HLS362N/hls_bp_master_credit_confirm.lview
+1
-1
No files found.
src/main/database/Init/Sys_code/INITIALIZE_SYSCODE_CREDIT_STATUS.sql
View file @
3dae48dc
...
...
@@ -7,6 +7,7 @@ set feedback off
set
define
off
<!
--授信状态字段-->
BEGIN
sys_code_pkg
.
delete_sys_code
(
'CREDIT_STATUS'
);
...
...
@@ -14,6 +15,7 @@ sys_code_pkg.insert_sys_code('CREDIT_STATUS', '授信状态', '授信状态', '
sys_code_pkg
.
insert_sys_code_value
(
'CREDIT_STATUS'
,
'ENABLE'
,
'启用'
,
'ZHS'
,
''
);
sys_code_pkg
.
insert_sys_code_value
(
'CREDIT_STATUS'
,
'FREZZING'
,
'审批冻结'
,
'ZHS'
,
''
);
sys_code_pkg
.
insert_sys_code_value
(
'CREDIT_STATUS'
,
'DISABLE'
,
'停用'
,
'ZHS'
,
''
);
sys_code_pkg
.
insert_sys_code_value
(
'CREDIT_STATUS'
,
'REFUSE'
,
'审批拒绝'
,
'ZHS'
,
''
);
END
;
/
...
...
src/main/webapp/modules/hls/HLS361N/hls_bp_master_credit.lview
View file @
3dae48dc
...
...
@@ -80,13 +80,13 @@ $Purpose: 商业伙伴授信维护
}
//启用和审批冻结判断
var credit_status=datas[0].data.credit_status;
if(credit_status!='ENABLE'
&&
credit_status!='DISABLE'){
$L.showInfoMessage("提示",'请选择状态为启用
和停用
的数据!',null,null)
if(credit_status!='ENABLE'
&&
credit_status!='DISABLE'
&&
credit_status!='REFUSE'
){
$L.showInfoMessage("提示",'请选择状态为启用
,停用和审批拒绝
的数据!',null,null)
return;
}
//角色判断 00215 营业内勤
//00213 营业担当
if(user_code==''||user_code==undefined){
if(user_code==''||user_code==undefined){
$L.showInfoMessage("提示",'只有营业内勤和营业担当才能操作数据!');
return;
}
...
...
src/main/webapp/modules/hls/HLS362N/hls_bp_master_credit_confirm.lview
View file @
3dae48dc
...
...
@@ -57,7 +57,7 @@ $Purpose: 商业伙伴授信维护
return;
}
//角色判断
//
002 营业本部长
//
002 营业本部长
if(user_code==''||user_code==undefined){
$L.showInfoMessage("提示",'只有营业本部长才能操作数据!');
return;
...
...
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