Commit 46b04830 authored by 陆正友's avatar 陆正友

Merge remote-tracking branch 'origin/remote_dev' into remote_dev

parents 15b4faf0 ad7083b1
......@@ -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>
......
......@@ -529,6 +529,7 @@
}
function csh511_save_all() {
debugger;
if (checkAmount()) {
var datas = [];
var para = {};
......@@ -543,9 +544,20 @@
para: datas,
success: function(res) {
Leaf.Masker.unmask(Ext.getBody());
$('csh_transaction_deposit_ds').submit();
$('csh_transaction_advanced_ds').submit();
csh531_submitsuccess();
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();
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment