Commit 0485dd84 authored by 18083's avatar 18083

保证金入金增加校验

parent 9663b18f
......@@ -24,6 +24,7 @@
<a:link id="csh509N_batch_update_confirmed_flag" model="csh.CSH509.query_roles_info" modelaction="batch_update"/>
<a:link id="csh510N_csh_transaction_batch_update_confirmed_flag" model="csh.CSH510.csh_transaction_update" modelaction="batch_update"/>
<a:link id="csh510_csh_transaction_import_link" url="${/request/@context_path}/modules/csh/CSH510N/csh_transaction_import.lview"/>
<a:link id="check_csh_transaction_entry_status_link_id" model="cus_deposit.CUS_DEPOSIT102.csh_transaction_query" modelaction="execute"/>
<script type="text/javascript"><![CDATA[
//锁表
......@@ -138,6 +139,14 @@
var ds_id = 'csh_transaction_receipt_maintain_result_ds';
var ds = $(ds_id)
var record = ds.getSelected()[0];
Leaf.Masker.mask(Ext.getBody(), '正在执行...');
Leaf.request({
url: $('check_csh_transaction_entry_status_link_id').getUrl(),
para: {
transaction_id:record.get('transaction_id')
},
success: function () {
Leaf.Masker.unmask(Ext.getBody());
var url;
url = $('csh_transaction_receipt_maintain_link').getUrl() + '?transaction_id=' + record.get('transaction_id') + '&bp_id='+ record.get('bp_id');
new Leaf.Window({
......@@ -151,6 +160,15 @@
}).on('close',function(){
cus100_receipt_query();
});
},
failure: function () {
Leaf.Masker.unmask(Ext.getBody());
},
error: function () {
Leaf.Masker.unmask(Ext.getBody());
},
scope: this
});
}
// function csh510_export() {
......
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