Commit 72d0d505 authored by 鲁鑫's avatar 鲁鑫

采购订单增加免费项目字段

parent e646d018
......@@ -54,6 +54,7 @@ function getGridColumns() {
{display: "进项税率(%)", name: "kbetr", width: "100", align: "left", type: "string"},
{display: "含税总额", name: "netwr", width: "100", align: "left", type: "string"},
{display: "退货项目", name: "retpo", width: "100", align: "left", type: "string"},
{display: "免费项目", name: "umson", width: "100", align: "left", type: "string"},
{display: "总账科目", name: "sakto", width: "100", align: "left", type: "string"},
{display: "成本中心", name: "kostl", width: "200", align: "left", type: "string"},
{display: "主资产号", name: "anln1", width: "200", align: "left", type: "string"},
......
......@@ -166,6 +166,12 @@ public class SapPurchaseOrderItem extends AbstractEntity {
@Column(name = "RETPO")
private String retpo;
/**
* 免费项目
*/
@Column(name = "UMSON")
private String umson;
/**
* 总账科目
*/
......
......@@ -92,4 +92,7 @@ public class SapPurchaseOrderItemVo {
@JsonProperty("ANLN2")
private String anln2;
@JsonProperty("UMSON")
private String umson;
}
\ 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