Commit 0485dd84 authored by 18083's avatar 18083

保证金入金增加校验

parent 9663b18f
......@@ -2,7 +2,7 @@
<!--
$Author: niminmin
$Date: 2019-10-28 上午11:10:33
$Revision: 1.0
$Revision: 1.0
$Purpose:保证金入账
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application" customizationEnabled="true" trace="true">
......@@ -24,7 +24,8 @@
<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"/>
<script type="text/javascript"><![CDATA[
<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[
//锁表
function lock_current_window() {
......@@ -138,19 +139,36 @@
var ds_id = 'csh_transaction_receipt_maintain_result_ds';
var ds = $(ds_id)
var record = ds.getSelected()[0];
var url;
url = $('csh_transaction_receipt_maintain_link').getUrl() + '?transaction_id=' + record.get('transaction_id') + '&bp_id='+ record.get('bp_id');
new Leaf.Window({
id: 'csh_transaction_deposit_link_winid',
params: {
winId: 'csh_transaction_deposit_link_winid'
},
url: url,
title: '保证金入账详情',
fullScreen: true
}).on('close',function(){
cus100_receipt_query();
});
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({
id: 'csh_transaction_deposit_link_winid',
params: {
winId: 'csh_transaction_deposit_link_winid'
},
url: url,
title: '保证金入账详情',
fullScreen: true
}).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