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
e6c0fd0f
Commit
e6c0fd0f
authored
Dec 13, 2022
by
21471731
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
收款反冲工作流
parent
d7e9dbab
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
773 additions
and
1 deletion
+773
-1
csh_transaction_recoi_query.lwm
...B-INF/classes/csh/CSH531F/csh_transaction_recoi_query.lwm
+181
-0
csh_transaction_recoi_submit.lwm
...-INF/classes/csh/CSH531F/csh_transaction_recoi_submit.lwm
+32
-0
csh_transaction_recoi_wfl_query.lwm
...F/classes/csh/CSH531F/csh_transaction_recoi_wfl_query.lwm
+119
-0
layout_config.js
...ebapp/WEB-INF/server-script/layoutconfig/layout_config.js
+3
-1
csh_bank_recoi_processing.lview
...ebapp/modules/csh/CSH531F/csh_bank_recoi_processing.lview
+244
-0
csh_bank_recoi_processing_workflow.lview
...ules/csh/CSH531F/csh_bank_recoi_processing_workflow.lview
+175
-0
csh_write_off_interface.lview
.../webapp/modules/csh/CSH531N/csh_write_off_interface.lview
+19
-0
No files found.
src/main/webapp/WEB-INF/classes/csh/CSH531F/csh_transaction_recoi_query.lwm
0 → 100644
View file @
e6c0fd0f
This diff is collapsed.
Click to expand it.
src/main/webapp/WEB-INF/classes/csh/CSH531F/csh_transaction_recoi_submit.lwm
0 → 100644
View file @
e6c0fd0f
<?xml version="1.0" encoding="UTF-8"?>
<!--
$Author: sc
$Date: 2022年12月2日11:26:37
$Revision: 1.0
$Purpose:
-->
<bm:model
xmlns:bm=
"http://www.leaf-framework.org/schema/bm"
needAccessControl=
"false"
>
<bm:operations>
<bm:operation
name=
"update"
>
<bm:update-sql>
<![CDATA[
begin
cm_sh_transaction_reverse_pkg.csh_bank_recoin_submit(
p_transaction_id =>
${@transaction_id},
p_user_id =>${/session/@user_id}
);
end;
]]>
</bm:update-sql>
</bm:operation>
<bm:operation
name=
"execute"
>
<bm:update-sql>
<![CDATA[
begin
cm_sh_transaction_reverse_pkg.csh_check_reverse(
p_transaction_id =>
${@transaction_id},
p_user_id =>${/session/@user_id}
);
end;
]]>
</bm:update-sql>
</bm:operation>
</bm:operations>
</bm:model>
src/main/webapp/WEB-INF/classes/csh/CSH531F/csh_transaction_recoi_wfl_query.lwm
0 → 100644
View file @
e6c0fd0f
This diff is collapsed.
Click to expand it.
src/main/webapp/WEB-INF/server-script/layoutconfig/layout_config.js
View file @
e6c0fd0f
...
...
@@ -328,5 +328,7 @@ var enableLayoutConfig = {
'modules/hsbc/HSBC120/hsbc_paying_batch_query.lview'
:
true
,
'modules/hsbc/HSBC130/pingan_account_hisbalance_query.lview'
:
true
,
'modules/prj/PRJ501N/prj_project_lease_import_details.lview'
:
true
,
'modules/prj/PRJ501N/prj_project_lease_import.lview:'
:
true
'modules/prj/PRJ501N/prj_project_lease_import.lview:'
:
true
,
'modules/csh/CSH531F/csh_bank_recoi_processing.lview'
:
true
,
'modules/csh/CSH531F/csh_bank_recoi_processing_workflow.lview'
:
true
};
\ No newline at end of file
src/main/webapp/modules/csh/CSH531F/csh_bank_recoi_processing.lview
0 → 100644
View file @
e6c0fd0f
This diff is collapsed.
Click to expand it.
src/main/webapp/modules/csh/CSH531F/csh_bank_recoi_processing_workflow.lview
0 → 100644
View file @
e6c0fd0f
This diff is collapsed.
Click to expand it.
src/main/webapp/modules/csh/CSH531N/csh_write_off_interface.lview
View file @
e6c0fd0f
...
...
@@ -5,6 +5,7 @@
<a:model-query
fetchAll=
"true"
model=
"csh.CSH531N.csh_transaction"
rootPath=
"csh_transaction_path"
/>
</a:init-procedure>
<a:view>
<a:link
id=
"csh531n_submit_check_reverse_link_id"
model=
"csh.CSH531F.csh_transaction_recoi_submit"
modelaction=
"execute"
/>
<a:link
id=
"csh531n_csh_confirm_data_link"
model=
"csh.CSH531N.csh_data_confirm"
modelaction=
"update"
/>
<a:link
id=
"csh531n_submit_link_id"
model=
"csh.CSH531N.csh_data_confirm"
modelaction=
"execute"
/>
<a:link
id=
"transaction_uploadFile_id"
url=
"${/request/@context_path}/uploadFile.lview"
/>
...
...
@@ -698,6 +699,24 @@
var createConfirm = Leaf.showConfirm('提示', '确认提交复核吗', function () {
$('csh531n_write_off_submit_btn_id').disable();
var transaction_id ='${/parameter/@transaction_id}';
Leaf.Masker.mask(Ext.getBody());
Leaf.request({
url: $('csh531n_submit_check_reverse_link_id').getUrl(),
para:{
transaction_id:transaction_id
},
success: function (res) {
Leaf.Masker.unmask(Ext.getBody());
},
failure: function () {
Leaf.Masker.unmask(Ext.getBody());
},
error: function () {
Leaf.Masker.unmask(Ext.getBody());
},
scope: this
});
csh511_save_all();
});
}
...
...
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