Parcourir la source

销售订单单证 存货分类编码

liuchaohui il y a 3 ans
Parent
commit
fd011ebea8

+ 4 - 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/documents/orderData/entity/SyOrderDataItem.java

@@ -68,6 +68,10 @@ public class SyOrderDataItem {
 	@Excel(name = "存货编码", width = 15)
     @ApiModelProperty(value = "存货编码")
 	private java.lang.String inventoryCode;
+	/**存货分类编码*/
+	@Excel(name = "存货分类编码", width = 15)
+	@ApiModelProperty(value = "存货分类编码")
+	private java.lang.String inventoryCcode;
 	/**存货名称*/
 	@Excel(name = "存货名称", width = 15)
     @ApiModelProperty(value = "存货名称")

+ 1 - 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/documents/orderData/service/impl/SyOrderDataServiceImpl.java

@@ -171,6 +171,7 @@ public class SyOrderDataServiceImpl extends ServiceImpl<SyOrderDataMapper, SyOrd
                         "s.cDefine28 AS smallPo," +
                         "s.cDefine29 AS distributionPoint," +
                         "s.cInvCode AS inventoryCode," +
+                        "c.cInvCcode AS inventoryCcode," +
                         "c.cInvName AS inventoryName," +
                         "s.cFree1 AS colour," +
                         "s.cFree2 AS size," +