Commit d6bd5006 authored by 1650842865's avatar 1650842865

费用报销增加付款事由字段

parent 9bb41c6a
...@@ -81,7 +81,7 @@ function initPurchaseListGrid() { ...@@ -81,7 +81,7 @@ function initPurchaseListGrid() {
heightDiff: -4, heightDiff: -4,
sortName: 'fillinDate', sortName: 'fillinDate',
sortOrder: 'desc', sortOrder: 'desc',
checkbox: false, checkbox: true,
usePager: true, usePager: true,
rownumbers: true, rownumbers: true,
enabledEdit: false, enabledEdit: false,
......
...@@ -274,6 +274,12 @@ public class SapCostReimbursement extends FlowBillAbstractEntity { ...@@ -274,6 +274,12 @@ public class SapCostReimbursement extends FlowBillAbstractEntity {
@Column(name = "exception_no") @Column(name = "exception_no")
private String exceptionNo; private String exceptionNo;
/**
* 付款事由
*/
@Column(name = "pay_reason")
private String payReason;
@Override @Override
protected String getCodeRuleId() { protected String getCodeRuleId() {
return "sapCostReimbursement"; return "sapCostReimbursement";
......
...@@ -460,10 +460,5 @@ public class SapCostReimbursementDetail implements Serializable { ...@@ -460,10 +460,5 @@ public class SapCostReimbursementDetail implements Serializable {
@Column(name = "zzinvcnr") @Column(name = "zzinvcnr")
private String zzinvcnr; private String zzinvcnr;
/**
* 付款事由
*/
@Column(name = "pay_reason")
private String payReason;
} }
\ 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