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
950347b2
Commit
950347b2
authored
Feb 24, 2023
by
gzj34291
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合同签约前变更
parent
99e3a104
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
221 additions
and
53 deletions
+221
-53
check_change_con_lease_item.lwm
...asses/check_after_save_bm/check_change_con_lease_item.lwm
+1
-0
check_contract_sign_status.lwm
...EB-INF/classes/cont/CON731/check_contract_sign_status.lwm
+22
-0
hls_before_sign_change_detail.lview
...p/modules/cont/CON731/hls_before_sign_change_detail.lview
+183
-48
hls_ccr_modify_entrance.lview
.../webapp/modules/cont/CON732/hls_ccr_modify_entrance.lview
+1
-0
hls_ccr_query_entrance.lview
...n/webapp/modules/cont/CON732/hls_ccr_query_entrance.lview
+10
-1
hls_con_contract_et_create_entrance.lview
...les/cont/CON733/hls_con_contract_et_create_entrance.lview
+3
-3
hls_fin_calculator_update_n.lview
...app/modules/hls/HLS500N/hls_fin_calculator_update_n.lview
+1
-1
No files found.
src/main/webapp/WEB-INF/classes/check_after_save_bm/check_change_con_lease_item.lwm
View file @
950347b2
...
...
@@ -9,6 +9,7 @@
<bm:operations>
<bm:operation
name=
"update"
>
<bm:update-sql>
<![CDATA[
begin
con_contract_workflow_pkg.check_change_con_lease_item(
p_contract_id =>
${@contract_id},
...
...
src/main/webapp/WEB-INF/classes/cont/CON731/check_contract_sign_status.lwm
0 → 100644
View file @
950347b2
<?xml version="1.0" encoding="UTF-8"?>
<!--
$Author: shenyamin
$Date: 2018-11_03 上午11:00:06
$Revision: 3.0
$Purpose:
-->
<bm:model
xmlns:bm=
"http://www.leaf-framework.org/schema/bm"
needAccessControl=
"false"
>
<bm:operations>
<bm:operation
name=
"query"
>
<bm:query-sql>
<![CDATA[
SELECT cr.req_status sign_contract_status
From con_contract_change_req cr
Where cr.change_req_id= ${@change_req_id}
]]>
</bm:query-sql>
</bm:operation>
</bm:operations>
<bm:fields>
<bm:field
name=
"sign_contract_status"
databaseType=
"VARCHAR2"
datatype=
"java.lang.String"
physicalName=
"sign_contract_status"
/>
</bm:fields>
</bm:model>
src/main/webapp/modules/cont/CON731/hls_before_sign_change_detail.lview
View file @
950347b2
This diff is collapsed.
Click to expand it.
src/main/webapp/modules/cont/CON732/hls_ccr_modify_entrance.lview
View file @
950347b2
...
...
@@ -125,6 +125,7 @@
}
param['document_type'] = record.get('ccr_document_type');
if (record.get('ccr_document_type') == 'CCR_BEFORE_SIGN') {
//update
//签约前变更换个页面,方便后续新人代码阅读 wangwei
hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'con_contract_sign_before_change_link', ds_id);
}else{
...
...
src/main/webapp/modules/cont/CON732/hls_ccr_query_entrance.lview
View file @
950347b2
...
...
@@ -22,6 +22,7 @@
url=
"${/request/@context_path}/modules/cont/CON732/hls_ccr_modify_assignment_agreement_print.lsc"
/>
<a:link
id=
"hls_crr_query_print_link_id"
url=
"${/request/@context_path}/modules/cont/CON732/hls_crr_query_print_word_detail.lview"
/>
<a:link
id=
"con_contract_sign_before_change_link"
url=
"${/request/@context_path}/modules/cont/CON731/hls_before_sign_change_detail.lview"
/>
<script
type=
"text/javascript"
>
<![CDATA[
function open_contract_win(ds_id, record_id) {
var record = $(ds_id).findById(record_id);
...
...
@@ -172,13 +173,21 @@
//param['function_code'] = 'CON733BPB';
param['function_code'] = 'CON733BPBQ';
param['url_title'] = '变更申请-合同回款账户变更查询';
}else if (record.get('ccr_document_type') == 'CCR_BEFORE_SIGN') {
param['function_code'] = 'CON733CBSIGN';
param['url_title'] = '变更申请-签约前合同变更';
}
param['function_usage'] = 'QUERY';
param['req_status'] = req_status;
param['query_flag'] = 'Y';
param['maintain_type'] = 'QUERY';
param['document_type'] = record.get('ccr_document_type');
hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'con_contract_change_link', ds_id);
if (record.get('ccr_document_type') == 'CCR_BEFORE_SIGN') {
hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'con_contract_sign_before_change_link', ds_id);
}else{
hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'con_contract_change_link', ds_id);
}
//hls_doc_get_layout_code('con_contract_get_layout_code_link_id', param, 'con_contract_change_link', ds_id);
};
//变更申请打印单
...
...
src/main/webapp/modules/cont/CON733/hls_con_contract_et_create_entrance.lview
View file @
950347b2
...
...
@@ -117,10 +117,10 @@
Leaf.showErrorMessage('${l:PROMPT}', '铁甲业务无法操作此项变更!');
return;
}
/*if(record.get('division') != '70'
&&
ccr_document_type == 'CCR_BEFORE_SIGN'){
Leaf.showErrorMessage('${l:PROMPT}', '
仅铁甲业务可操作
此项变更!');
if((record.get('division') != '70'
&&
record.get('division') != '92')
&&
ccr_document_type == 'CCR_BEFORE_SIGN'){
Leaf.showErrorMessage('${l:PROMPT}', '
当前合同暂不能进行
此项变更!');
return;
}
*/
}
Leaf.showConfirm('特别注意', '
<span
style=
"color: #ff0000; "
>
该操作将导致合同在变更期间无法进行后续操作,请谨慎操作!!!如果需要取消变更,请一定点击取消变更按钮!!!
</span>
', function () {
var contract = record.get('contract_id');
...
...
src/main/webapp/modules/hls/HLS500N/hls_fin_calculator_update_n.lview
View file @
950347b2
...
...
@@ -1009,7 +1009,7 @@
}
if
('${/parameter/@document_category}'
==
'PROJECT'||
'${/parameter/@document_category}'
==
'CONTRACT
')
{
if
('${/parameter/@document_category}'
==
'PROJECT'||
'${/parameter/@layout_code}'
==
'CCR_BEFORE_SIGN
')
{
Leaf.request({
url:
$('prj_check_prj_record_link_id').getUrl(),
para:
{
...
...
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