浏览代码

销售订单单证同步 克重

liuchaohui 2 年之前
父节点
当前提交
86cc35d842

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

@@ -96,6 +96,11 @@ public class SyOrderDataItem {
 	@Excel(name = "光坯毛门幅CM", width = 15)
     @ApiModelProperty(value = "光坯毛门幅CM")
 	private java.lang.String guangpeiGateWidth;
+
+	@Excel(name = "克重", width = 15)
+	@ApiModelProperty(value = "克重")
+	private java.lang.String weight;
+
 	/**箱数*/
 	@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.cFree2 AS size," +
                         "s.cFree3 AS codingRules," +
                         "s.cFree4 AS guangpeiGateWidth," +
+                        "s.cFree6 AS weight,"+
                         "s.cDefine35 AS boxNumber," +
                         "s.iQuantity AS quantity," +
                         "s.iQuantity AS surplusNum," +