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
6f8de30b
Commit
6f8de30b
authored
Jun 03, 2024
by
38823
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
经租工作流改造(保证金划转)
parent
b5b73821
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
12 deletions
+28
-12
csh_transaction_review_query.lwm
...s_deposit/CUS_DEPOSIT102/csh_transaction_review_query.lwm
+4
-1
csh_transaction_deposit_transfer_detail.lview
..._DEPOSIT102/csh_transaction_deposit_transfer_detail.lview
+24
-11
No files found.
src/main/webapp/WEB-INF/classes/cus_deposit/CUS_DEPOSIT102/csh_transaction_review_query.lwm
View file @
6f8de30b
...
...
@@ -2,7 +2,7 @@
<!--
$Author: 26887cz
$Date: 2021年8月2日15:40:53
$Revision: 1.0
$Revision: 1.0
4
$Purpose: 保证金划转复核
-->
<bm:model
xmlns:o=
"leaf.database.local.oracle"
xmlns:bm=
"http://www.leaf-framework.org/schema/bm"
xmlns:f=
"leaf.database.features"
alias=
"t1"
baseTable=
"CSH_TRANSACTION_CONTEMP"
>
...
...
@@ -30,6 +30,7 @@
<bm:field
name=
"con_search_term_1"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
physicalName=
"con_search_term_1"
forInsert=
"false"
forUpdate=
"false"
/>
<bm:field
name=
"vender_project_number"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
physicalName=
"vender_project_number"
forInsert=
"false"
forUpdate=
"false"
/>
<bm:field
name=
"agent_bp_code"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
physicalName=
"AGENT_BP_CODE"
forInsert=
"false"
forUpdate=
"false"
/>
<bm:field
name=
"business_type"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
physicalName=
"BUSINESS_TYPE"
forInsert=
"false"
forUpdate=
"false"
/>
</bm:fields>
<bm:features>
<f:standard-who/>
...
...
@@ -48,6 +49,7 @@
ct.source_contract_id,
ct.source_transaction_id,
ct.contract_id,
cc.business_type,
(select t.contract_number from con_contract t
where t.contract_id = ct.contract_id
and t.data_class = 'NORMAL'
...
...
@@ -96,6 +98,7 @@
ct.source_contract_id,
ct.source_transaction_id,
ct.contract_id,
cc.operat_flag business_type,
'' contract_number,
'' con_search_term_1,
'' vender_project_number,
...
...
src/main/webapp/modules/cus_deposit/CUS_DEPOSIT102/csh_transaction_deposit_transfer_detail.lview
View file @
6f8de30b
...
...
@@ -44,17 +44,30 @@
var trans_record;
trans_record = deposit_records[i];
//划出代理店与划入代理店一致且划出代理店为经租代理店时,提交经租营业本部长审批
var check_flag= false;
if(head_record.get('agent_bp_code')!='D00010027'){
check_flag= true
}else if(head_record.get('agent_bp_code')=='D00010027'){
for (var j = 0; j < deposit_records.length; j++) {
if(head_record.get('agent_bp_code') !=deposit_records[j].get('agent_bp_code')){
var check_flag= true;
break;
}
}
}
var check_flag= true;
// if(head_record.get('agent_bp_code')!='D00010027'){
// check_flag= true
// }else if(head_record.get('agent_bp_code')=='D00010027'){
// for (var j = 0; j < deposit_records.length; j++) {
// if(head_record.get('agent_bp_code') !=deposit_records[j].get('agent_bp_code')){
// var check_flag= true;
// break;
// }
// }
// }
//经营性租赁划转到其他,提交经租副部长审批
if(head_record.get('business_type') == 'LEASEOPERAT'){
check_flag == false;
}
//融租划转到经租,提交经租副部长审批
if(head_record.get('business_type') != 'LEASEOPERAT'){
for(var i= 0; i<deposit_records.length; i++){
if(deposit_records.get('business_type') == 'Y' || deposit_records.get('business_type') == 'LEASEOPERAT'){
check_flag = false;
break;
}
}
}
if(check_flag){
trans_record.set('review_type', 'REVIEWING');
}else{
...
...
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