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
b16f2c94
Commit
b16f2c94
authored
Oct 11, 2024
by
18083
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新建代理店广东鑫众
parent
f505b199
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
4 deletions
+66
-4
con_file_download.lwm
...ain/webapp/WEB-INF/classes/wx/WX100/con_file_download.lwm
+4
-1
con_file_list_query.lwm
...n/webapp/WEB-INF/classes/wx/WX100/con_file_list_query.lwm
+2
-1
sign_auth_status_query.lwm
...ebapp/WEB-INF/classes/wx/WX100/sign_auth_status_query.lwm
+19
-0
con_re_print_entrance.lview
...in/webapp/modules/cont/CON311/con_re_print_entrance.lview
+1
-1
con_contract_modify.lview
...main/webapp/modules/cont/CON505/con_contract_modify.lview
+1
-1
sign_auth_status_query.lsc
src/main/webapp/modules/wx/WX100/sign_auth_status_query.lsc
+39
-0
No files found.
src/main/webapp/WEB-INF/classes/wx/WX100/con_file_download.lwm
View file @
b16f2c94
...
...
@@ -148,7 +148,10 @@ select fa.file_name,fa.file_path,fa.attachment_id
'CSH_PAYMENT_REQ_TJ_RE','CSH_PAYMENT_REQ_TJ_E',
--'CSH_PAYMENT_REQ_KJ_1_RE','CSH_PAYMENT_REQ_KJ_1_E',
'CSH_PAYMENT_REQ_KJ_1_RE','CSH_PAYMENT_REQ_TJ_E',
'CSH_LEASEBACK_YNTQ_RE','CSH_PAYMENT_REQ_TJ_E'
'CSH_LEASEBACK_YNTQ_RE','CSH_PAYMENT_REQ_TJ_E',
--广东鑫源 保证函(广东鑫众实控人)
'FINANCE_LEASE_CONTRACT_GXZ_S_E','FINANCE_LEASE_CONTRACT_GXZ_S_E',
'GUA_PERSONAL_CREDIT_MJ_SE','PERSONAL_CREDIT'
)
from con_ele_signer_file cf, con_contract_ele_signer cs
where cf.con_ele_signer_id = cs.con_ele_signer_id
...
...
src/main/webapp/WEB-INF/classes/wx/WX100/con_file_list_query.lwm
View file @
b16f2c94
...
...
@@ -64,7 +64,8 @@ select fa.file_name, fa.file_path, fa.file_size, ct.order_seq
from con_contract_bp cb, hls_bp_master hm
where cb.bp_id = hm.bp_id
and hm.social_code = ${@id_no}
and cb.contract_id = cc.contract_id)))
and cb.contract_id = cc.contract_id))
and cf.templet_code not in('FINANCE_LEASE_CONTRACT_GXZ_S_E','GUA_PERSONAL_CREDIT_MJ_SE'))
order by ct.order_seq
]]>
</bm:query-sql>
</bm:operation>
...
...
src/main/webapp/WEB-INF/classes/wx/WX100/sign_auth_status_query.lwm
0 → 100644
View file @
b16f2c94
<?xml version="1.0" encoding="UTF-8"?>
<bm:model
xmlns:bm=
"http://www.leaf-framework.org/schema/bm"
>
<bm:operations>
<bm:operation
name=
"query"
>
<bm:query-sql>
<![CDATA[
select decode(v.exc_num, 0, 'N', 'Y') statusFlag
from (select count(1) exc_num
from sign_auth_exc t
where t.id_no = ${@id_no}
and t.bp_name = ${@bp_name}
and t.agent_bp_code='D00010039') v
]]>
</bm:query-sql>
</bm:operation>
</bm:operations>
<bm:fields>
<bm:field
name=
"statusFlag"
/>
</bm:fields>
</bm:model>
src/main/webapp/modules/cont/CON311/con_re_print_entrance.lview
View file @
b16f2c94
...
...
@@ -216,7 +216,7 @@
return;
}
//代理店北京慧珠不支持打印纸质合同文本
if(
bp_id_agent_code=
='D00010038'||bp_id_agent_code=='D00010023'){
if(
bp_id_agent_code=
='D00010038'||bp_id_agent_code=='D00010023'
||bp_id_agent_code=='D00010039'
){
Leaf.showErrorMessage('提示','当前合同不支持打印纸质合同文本!');
return;
}
...
...
src/main/webapp/modules/cont/CON505/con_contract_modify.lview
View file @
b16f2c94
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/main/webapp/modules/wx/WX100/sign_auth_status_query.lsc
0 → 100644
View file @
b16f2c94
<?xml version="1.0" encoding="UTF-8"?>
<a:service
xmlns:ns1=
"leaf.application.action"
xmlns:p=
"uncertain.proc"
xmlns:a=
"http://www.leaf-framework.org/application"
xmlns:s=
"leaf.plugin.script"
trace=
"true"
>
<a:init-procedure>
<s:server-script
import=
"app/app_login_check.js"
>
<![CDATA[
function sign_auth_status_query() {
var statusFlag_map;
var statusFlag;
try {
var statusFlag_query = $bm('wx.WX100.sign_auth_status_query');
statusFlag_map = statusFlag_query.queryAsMap({
id_no:$ctx.parameter.idNo,
bp_name:$ctx.parameter.name
});
var statusFlag_details = statusFlag_map.getChildren();
statusFlag = statusFlag_details[0].statusFlag;
$ctx.parameter.return_status = '0';
$ctx.parameter.return_message = '执行成功';
} catch (e) {
$ctx.success = "false";
$ctx.parameter.return_status = '1';
$ctx.parameter.return_message = String(e);
statusFlag = 'Y'
}
//返回结果
var result = {
code: $ctx.parameter.return_status,
message: $ctx.parameter.return_message,
statusFlag: statusFlag
};
$ctx.parameter.json = JSON.stringify(result);
}
if ($ctx.parameter.return_status != 'E' && $ctx.parameter.return_status != 'TIMEOUT') {
sign_auth_status_query();
}
]]>
</s:server-script>
</a:init-procedure>
<a:service-output
output=
"/parameter/@json"
/>
</a:service>
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