Commit 1a2b38d2 authored by 38823's avatar 38823

茂甲控制保证金校验页面优化

parent fbf86ac1
...@@ -28,16 +28,16 @@ ...@@ -28,16 +28,16 @@
<bm:operation name="query"> <bm:operation name="query">
<bm:query-sql><![CDATA[ <bm:query-sql><![CDATA[
SELECT Mar_After_Status AS Mar_Status, select Mar_After_Status as Mar_Status, mar_after_status_n
from (select t.mar_after_status,
(SELECT Code_Value_Name (SELECT Code_Value_Name
FROM Sys_Code_Values_v, Csh_Margin_Check T1 FROM Sys_Code_Values_v sv
WHERE Code = 'MARGIN_CHECK_STATUS' where sv.code = 'MARGIN_CHECK_STATUS'
AND Code_Value = T1.Mar_After_Status and sv.code_value = t.mar_after_status) mar_after_status_n
AND t.Margin_Check_Id = T1.Margin_Check_Id) Mar_After_Status_n from Csh_Margin_Check t
FROM Csh_Margin_Check t where t.wfl_status = 'APPROVED'
WHERE t.Wfl_Status = 'APPROVED' order by t.creation_date desc)
AND Rownum = 1 where Rownum = 1
ORDER BY t.Creation_Date DESC
]]></bm:query-sql> ]]></bm:query-sql>
</bm:operation> </bm:operation>
</bm:operations> </bm:operations>
......
...@@ -492,9 +492,9 @@ ...@@ -492,9 +492,9 @@
} }
function csh531_margin_check() { function csh531_margin_check() {
debugger;
var param={}; var param={};
param['function_code']= 'CSH531F3'; param['function_code']= 'CSH531F3';
param['function_usage'] = 'MODIFY';
param['url_title']='控制茂甲保证金校验'; param['url_title']='控制茂甲保证金校验';
hls_doc_get_layout_code('hls_get_layout_code_link_id',param,'csh_margin_check_id'); hls_doc_get_layout_code('hls_get_layout_code_link_id',param,'csh_margin_check_id');
} }
......
...@@ -9,8 +9,9 @@ ...@@ -9,8 +9,9 @@
<a:link id="${/parameter/@layout_code}_csh531_margin_check_submit_link_id" model="csh.CSH531F.csh_transaction_recoi_check_wfl" modelaction="execute"/> <a:link id="${/parameter/@layout_code}_csh531_margin_check_submit_link_id" model="csh.CSH531F.csh_transaction_recoi_check_wfl" modelaction="execute"/>
<script type="text/javascript"><![CDATA[ <script type="text/javascript"><![CDATA[
$L.onReady(function () { $L.onReady(function () {
if("${/parameter/@function_usage}" == 'QUERY'){ if("${/parameter/@function_usage}" == 'QUERY' && document.getElementById('${/parameter/@layout_code}_user_button1') && document.getElementById('${/parameter/@layout_code}_save')){
$jq('#${/parameter/@layout_code}_user_button1').hide(); $jq('#${/parameter/@layout_code}_user_button1').hide();
$jq('#${/parameter/@layout_code}_save').hide();
var marginCheckId="${/parameter/@MARGIN_CHECK_ID}"; var marginCheckId="${/parameter/@MARGIN_CHECK_ID}";
var ds_query_id= 'MARGIN_CHECK_F_QUERY_csh_margin_check_ds'; var ds_query_id= 'MARGIN_CHECK_F_QUERY_csh_margin_check_ds';
var ds_result_id= 'MARGIN_CHECK_F_RESULT_csh_margin_check_ds'; var ds_result_id= 'MARGIN_CHECK_F_RESULT_csh_margin_check_ds';
...@@ -23,12 +24,11 @@ ...@@ -23,12 +24,11 @@
var ds_id= 'MARGIN_CHECK_F_QUERY_csh_margin_check_ds'; var ds_id= 'MARGIN_CHECK_F_QUERY_csh_margin_check_ds';
var record= $(ds_id).getCurrentRecord(); var record= $(ds_id).getCurrentRecord();
var marAfterStatus = record.get('mar_before_status'); if(Ext.isEmpty('${/model/wfl_status/record/@mar_status}')){
if('${/model/wfl_status/record/@mar_status}' == '' || '${/model/wfl_status/record/@mar_status}' == undefined){
record.set('mar_before_status','Y'); record.set('mar_before_status','Y');
record.set('mar_before_status_n','打开'); record.set('mar_before_status_n','打开');
} }
if('${/model/wfl_status/record/@mar_status}' != ''){ if(!Ext.isEmpty('${/model/wfl_status/record/@mar_status}')){
record.set('mar_before_status','${/model/wfl_status/record/@mar_status}'); record.set('mar_before_status','${/model/wfl_status/record/@mar_status}');
record.set('mar_before_status_n','${/model/wfl_status/record/@mar_after_status_n}'); record.set('mar_before_status_n','${/model/wfl_status/record/@mar_after_status_n}');
} }
...@@ -59,7 +59,6 @@ ...@@ -59,7 +59,6 @@
success: function(res) { success: function(res) {
window['${/parameter/@bp_seq}${/parameter/@layout_code}_unlock_layout_dynamic_window'](); window['${/parameter/@bp_seq}${/parameter/@layout_code}_unlock_layout_dynamic_window']();
$('${/parameter/@winid}').close(); $('${/parameter/@winid}').close();
console.log(res);
Leaf.SideBar.show({ Leaf.SideBar.show({
msg: '操作成功', msg: '操作成功',
duration: 200 duration: 200
...@@ -80,6 +79,7 @@ ...@@ -80,6 +79,7 @@
//保存前调用 //保存前调用
window['${/parameter/@bp_seq}${/parameter/@layout_code}_on_layout_dynamic_before_submit'] = function(ds, record) { window['${/parameter/@bp_seq}${/parameter/@layout_code}_on_layout_dynamic_before_submit'] = function(ds, record) {
var check_flag=true; var check_flag=true;
window['${/parameter/@layout_code}_lock_layout_dynamic_window'](); window['${/parameter/@layout_code}_lock_layout_dynamic_window']();
var ds_id='MARGIN_CHECK_F_RESULT_csh_margin_check_ds'; var ds_id='MARGIN_CHECK_F_RESULT_csh_margin_check_ds';
var ds_query_id = 'MARGIN_CHECK_F_QUERY_csh_margin_check_ds'; var ds_query_id = 'MARGIN_CHECK_F_QUERY_csh_margin_check_ds';
......
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