Commit 6dd2e58d authored by 1650842865's avatar 1650842865

付款申请:根据供应商自动带出付款条件

parent d3fa653a
...@@ -66,6 +66,7 @@ var tableArray = [ ...@@ -66,6 +66,7 @@ var tableArray = [
BANKL: "bankl", BANKL: "bankl",
BANKN: "bankn", BANKN: "bankn",
SWIFT: "swift", SWIFT: "swift",
TEXT1: "text1",
} }
}, },
} }
...@@ -572,6 +573,10 @@ function loadGrid(obj) { ...@@ -572,6 +573,10 @@ function loadGrid(obj) {
}) })
UICtrl.setGridColumns(obj.gridManager,columns); UICtrl.setGridColumns(obj.gridManager,columns);
} }
if (item.column.name == "partner" ){
var text1 = item.record.text1;
$("#text1").val(text1);
}
return item; return item;
}, },
onAfterShowData:function (){ onAfterShowData:function (){
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
<div class="hg-form-row"> <div class="hg-form-row">
<x:inputC name="zepFtamount" required="false" readonly="true" label="申请总金额(本位币)" labelCol="2" fieldCol="2" mask="positiveMoney"/> <x:inputC name="zepFtamount" required="false" readonly="true" label="申请总金额(本位币)" labelCol="2" fieldCol="2" mask="positiveMoney"/>
<x:inputC name="zepFtamount1" required="false" readonly="true" label="申请总金额" labelCol="2" fieldCol="2" mask="positiveMoney"/> <x:inputC name="zepFtamount1" required="false" readonly="true" label="申请总金额" labelCol="2" fieldCol="2" mask="positiveMoney"/>
<x:inputC name="text1" required="false" readonly="true" label="月结方式" labelCol="2" fieldCol="2"/>
</div> </div>
<div class="hg-form-row" id="approvalMoney"> <div class="hg-form-row" id="approvalMoney">
<x:inputC name="zepPtamount" required="false" readonly="true" label="审批总金额(本位币)" labelCol="2" fieldCol="2" mask="positiveMoney"/> <x:inputC name="zepPtamount" required="false" readonly="true" label="审批总金额(本位币)" labelCol="2" fieldCol="2" mask="positiveMoney"/>
......
...@@ -225,6 +225,12 @@ public class SapCostReimbursement extends FlowBillAbstractEntity { ...@@ -225,6 +225,12 @@ public class SapCostReimbursement extends FlowBillAbstractEntity {
@Column(name = "ZT012K_TEXT1") @Column(name = "ZT012K_TEXT1")
private String zt012kText1; private String zt012kText1;
/**
* 付款方式
*/
@Column(name = "text1")
private String text1;
@Override @Override
protected String getCodeRuleId() { protected String getCodeRuleId() {
......
...@@ -412,4 +412,10 @@ public class SapCostReimbursementDetail implements Serializable { ...@@ -412,4 +412,10 @@ public class SapCostReimbursementDetail implements Serializable {
@Column(name = "ZYL06") @Column(name = "ZYL06")
private String zyl06; private String zyl06;
/**
* 付款方式
*/
@Column(name = "text1")
private String text1;
} }
\ No newline at end of file
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