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
46b04830
Commit
46b04830
authored
Feb 06, 2024
by
陆正友
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/remote_dev' into remote_dev
parents
15b4faf0
ad7083b1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
5 deletions
+23
-5
csh_write_off_interface.lwm
...p/WEB-INF/classes/csh/CSH531N/csh_write_off_interface.lwm
+7
-2
csh_write_off_interface.lview
.../webapp/modules/csh/CSH531N/csh_write_off_interface.lview
+16
-3
No files found.
src/main/webapp/WEB-INF/classes/csh/CSH531N/csh_write_off_interface.lwm
View file @
46b04830
...
...
@@ -37,7 +37,8 @@ begin
p_post_flag => ${@post_flag},
p_write_off_classification => ${@write_off_classification},
p_journal_date => to_date(${@journal_date},'yyyy-mm-dd'),
p_user_id => ${/session/@user_id});
p_user_id => ${/session/@user_id},
p_err_msg => ${@p_err_msg});
end;
]]>
</bm:update-sql>
</bm:operation>
...
...
@@ -67,9 +68,13 @@ begin
p_post_flag => ${@post_flag},
p_write_off_classification => ${@write_off_classification},
p_journal_date => to_date(${@journal_date},'yyyy-mm-dd'),
p_user_id => ${/session/@user_id});
p_user_id => ${/session/@user_id},
p_err_msg => ${@p_err_msg});
end;
]]>
</bm:update-sql>
<bm:parameters>
<bm:parameter
name=
"p_err_msg"
dataType=
"java.lang.String"
input=
"false"
output=
"true"
outputPath=
"@p_err_msg"
/>
</bm:parameters>
</bm:operation>
</bm:operations>
<bm:fields>
...
...
src/main/webapp/modules/csh/CSH531N/csh_write_off_interface.lview
View file @
46b04830
...
...
@@ -529,6 +529,7 @@
}
function csh511_save_all() {
debugger;
if (checkAmount()) {
var datas = [];
var para = {};
...
...
@@ -542,10 +543,21 @@
url:
$('csh531n_submit_interface_link_id').getUrl(),
para:
datas,
success:
function(res)
{
Leaf.Masker.unmask(Ext.getBody());
if(res.result.record[0].p_err_msg){
var
message=
''
;
for(var
i=
0;i<res.result.record.length;i++){
message=
res.result.record[i].p_err_msg
+
message;
}
var
e_message =
'建行代扣结果未回传 :'
+message+',请重新选择需核销的现金流!';
$L.showErrorMessage("提示",e_message,null,800,300);
$('csh531n_write_off_submit_btn_id').enable();
}else
{
Leaf.Masker.unmask(Ext.getBody());
$('csh_transaction_deposit_ds').submit();
$('csh_transaction_advanced_ds').submit();
csh531_submitsuccess();
}
},
failure:
function()
{
Leaf.Masker.unmask(Ext.getBody());
...
...
@@ -693,6 +705,7 @@
}
var createConfirm = Leaf.showConfirm('提示', '确认提交复核吗', function () {
debugger;
$('csh531n_write_off_submit_btn_id').disable();
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