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
d109e31c
Commit
d109e31c
authored
Jul 19, 2023
by
邓乾隆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合同起租页面追加同步判断
parent
59f24725
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
con_checklist_contract.lwm
...p/WEB-INF/classes/cont/CON3200/con_checklist_contract.lwm
+16
-0
con_re_incept_modify.lview
...in/webapp/modules/cont/CON3200/con_re_incept_modify.lview
+24
-0
No files found.
src/main/webapp/WEB-INF/classes/cont/CON3200/con_checklist_contract.lwm
0 → 100644
View file @
d109e31c
<?xml version="1.0" encoding="UTF-8"?>
<bm:model
xmlns:bm=
"http://www.leaf-framework.org/schema/bm"
needAccessControl=
"false"
>
<bm:operations>
<bm:operation
name=
"query"
>
<bm:query-sql>
<![CDATA[
select contract_status
from con_contract t
where t.contract_id = ${@contract_id}
and rownum = 1
]]>
</bm:query-sql>
</bm:operation>
</bm:operations>
<bm:fields>
<bm:field
name=
"contract_status"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
physicalName=
"contract_status"
/>
</bm:fields>
</bm:model>
src/main/webapp/modules/cont/CON3200/con_re_incept_modify.lview
View file @
d109e31c
...
...
@@ -58,6 +58,7 @@
url=
"${/request/@context_path}/modules/hls/HLS500N/hls_fin_calculator_update_n.lview"
/>
<a:link
id=
"get_atch_download_link"
url=
"${/request/@context_path}/modules/batch_download/lease_atm_batch_dl.lsc"
/>
<a:link
id=
"check_contract_status"
model=
"cont.CON3200.con_checklist_contract"
modelaction=
"query"
/>
<link
href=
"${/request/@context_path}/modules/viewerjs/viewer.css"
rel=
"stylesheet"
/>
<script
src=
"${/request/@context_path}/modules/viewerjs/viewer.js"
/>
<script
src=
"${/request/@context_path}/modules/viewerjs/viewer_tool.js"
/>
...
...
@@ -775,6 +776,29 @@
var
division =
lease_item_record.get('division');
var
machine_number_num =
0;
var
secondary_lease =
record.get('secondary_lease')
;
var
contract_id =
record.get('contract_id');
var
contract_status =
record.get('contract_status');
console.log(contract_record);
//校验合同状态
if(!Leaf.isEmpty(contract_status)){
Leaf.request({
url:
$('check_contract_status').getUrl(),
para:
{
contract_id:
contract_id
},
scope:
this,
success:
function
(res)
{
if(contract_status
!=
res.result.record.contract_status){
$L.showErrorMessage('提示',
'合同状态已发生改变,需要重新刷新页面!');
return
false;
}
},
failure:
function
()
{
return
false;
},
});
}
if(!Leaf.isEmpty(secondary_lease)
&&
secondary_lease!='YES')
{
if
(
division =
=
'92'
&&
!Leaf.isEmpty(machine_number))
{
Leaf.request({
...
...
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