Commit 13ff6f5d authored by 李贺贺's avatar 李贺贺

商业伙伴维护开票信息申请功能调整

parent ca6cd7a2
<?xml version="1.0" encoding="UTF-8"?>
<!--
$Author: lihh
$Date: 2021-05_07 上午10:00:06
$Revision: 3.0
$Purpose:
-->
<bm:model xmlns:bm="http://www.leaf-framework.org/schema/bm">
<bm:operations>
<bm:operation name="update">
<bm:update-sql><![CDATA[
declare
r_hls_bp_master_req hls_bp_master_req%Rowtype;
begin
Select *
Into r_hls_bp_master_req
From hls_bp_master_req hb
Where hb.change_req_id = ${@change_req_id}
For Update Nowait;
hls_bp_master_change_req_pkg.hls_bp_master_wfl_approved(
p_hls_bp_master_req=> r_hls_bp_master_req,
p_company_id => ${/session/@company_id},
p_user_id => ${/session/@user_id}
);
end;
]]></bm:update-sql>
</bm:operation>
</bm:operations>
</bm:model>
......@@ -63,6 +63,9 @@
record.getField('invoice_type_n').setReadOnly(true);
record.getField('reception_maile').setRequired(false);
}
if(record.get('bp_class') == 'NP'){
document.getElementById('${/parameter/@layout_code}_submit_approval').style.display = "none";
}
};
// 更新事件
window['${/parameter/@bp_seq}${/parameter/@layout_code}_on_layout_dynamic_update'] = function (ds, record, name, value, old_value, bp_seq) {
......
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