1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<a:screen xmlns:a="http://www.leaf-framework.org/application">
<a:init-procedure/>
<a:view>
<a:link id="csh_bank_transfer_link_2" url="${/request/@context_path}/modules/csh/CSH533N/csh_create_receipt_trx.lview"/>
<a:link id="csh_trx_delete_link_2" model="csh.CSH531N.csh_trx_batch_interface" modelaction="delete"/>
<script type="text/javascript"><![CDATA[
function csh_error_page_return() {
// Leaf.request({
// url:$('csh_trx_delete_link_2').getUrl(),
// para:{batch_id :${/parameter/@batch_id}},
// success: function(){ },
// scope: this
// });
location.href = $('csh_bank_transfer_link_2').getUrl() + '?batch_id=${/parameter/@batch_id}';
}
]]></script>
<a:dataSets>
<a:dataSet id="error_message_ds" autoQuery="true" model="csh.CSH531N.csh_transaction_interface_log" queryUrl="${/request/@context_path}/autocrud/csh.CSH531N.csh_transaction_interface_log/query?batch_id=${/parameter/@batch_id}">
<a:fields>
<a:field name="message" readOnly="true"/>
</a:fields>
</a:dataSet>
</a:dataSets>
<a:screenBody>
<a:grid bindTarget="error_message_ds" height="280" width="600">
<a:columns>
<a:column name="message" editor="csh_error_page_ta" prompt="ERROR_MESSAGE" width="599"/>
</a:columns>
<a:editors>
<a:textArea id="csh_error_page_ta"/>
</a:editors>
</a:grid>
<a:hBox width="400">
<a:label/>
<a:button click="csh_error_page_return" text="HLS.RETURN"/>
</a:hBox>
<!-- <a:label name="message" bindTarget="error_message_ds" prompt="错误信息"/> -->
</a:screenBody>
</a:view>
</a:screen>