【未完成单据提交-优化】

yun-zuoyi
曾贞一 4 years ago
parent 5f0df666da
commit aae3fb2539

@ -304,6 +304,11 @@ public class WmsPart extends BaseBean {
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
private Integer limitQualityDays;
@Column(name = "WEIGHT")
@ApiParam(value = "重量", example = "0")
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
private Double weight ;
public int getIqcVal() {
return this.iqc == null ? 0 : this.iqc.intValue();
@ -320,6 +325,7 @@ public class WmsPart extends BaseBean {
return partVol == null ? 0 : partVol;
}
public Double getWeightVal() { return this.weight == null ? 0d : this.weight.doubleValue(); }
public Double getQty() {
return qty == null ? 0 : qty;

@ -111,6 +111,9 @@ public class WmsGcdcContainerModel extends BaseBean {
@ApiParam(value = "是否绑定发运")
private Integer isBindingShip = WmsEnumUtil.TRUE_OR_FALSE.FALSE.getValue();
@ApiParam("交易类型名称")
private String transTypeName;
public WmsGcdcContainerModel() {
}
@ -126,10 +129,11 @@ public class WmsGcdcContainerModel extends BaseBean {
this.createUser = createUser;
}
public WmsGcdcContainerModel(Long id, String orderNo, String moveNo, String erpSrcNo, String custNo,
public WmsGcdcContainerModel(Long id, String orderNo,String transTypeCode, String moveNo, String erpSrcNo, String custNo,
Integer itemStatus, String createDatetime, String createUser, Integer busiType) {
this.id = id;
this.orderNo = orderNo;
this.transTypeCode = transTypeCode;
this.moveNo = moveNo;
this.erpSrcNo = erpSrcNo;
this.custNo = custNo;

Loading…
Cancel
Save