|
|
|
@ -104,7 +104,7 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "ITEM_STATUS")
|
|
|
|
|
@ApiParam(value = "状态", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MASTER_ORDER_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MASTER_ORDER_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer itemStatus;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -112,7 +112,7 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "IS_FREE")
|
|
|
|
|
@ApiParam(value = "是否免费", example = "1")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.TRUE_OR_FALSE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer isFree;
|
|
|
|
|
|
|
|
|
|
@Column(name = "REMARK")
|
|
|
|
@ -176,25 +176,25 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
public Double inputMoveQty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="标准包装",example = "1")
|
|
|
|
|
@ApiParam(value = "标准包装", example = "1")
|
|
|
|
|
private Double snp;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="条码总数量",example = "1")
|
|
|
|
|
@ApiParam(value = "条码总数量", example = "1")
|
|
|
|
|
private Double detailsSnCount;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="余数",example = "1")
|
|
|
|
|
@ApiParam(value = "余数", example = "1")
|
|
|
|
|
private Double restQty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("任务状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.IS_GENERAL_TASK.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.IS_GENERAL_TASK.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer isTask;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("主表单据状态")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MASTER_ORDER_STATUS.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.MASTER_ORDER_STATUS.class, refForeignKey = "value", value = "description")
|
|
|
|
|
private Integer orderMasterStatus;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
@ -206,17 +206,33 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
return recommondLot == null ? "无" : this.recommondLot;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getQty() {return qty == null ? 0D : this.qty.doubleValue(); }
|
|
|
|
|
public Double getQty() {
|
|
|
|
|
return qty == null ? 0D : this.qty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getOutQty() {
|
|
|
|
|
return outQty == null ? 0D : this.outQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getOutQty() {return outQty == null ? 0D : this.outQty.doubleValue(); }
|
|
|
|
|
public Double getPickQty() {
|
|
|
|
|
return pickQty == null ? 0D : this.pickQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getPickQty() {return pickQty == null ? 0D : this.pickQty.doubleValue(); }
|
|
|
|
|
public Double getActualQty() {
|
|
|
|
|
return actualQty == null ? 0D : this.actualQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getActualQty() {return actualQty == null ? 0D : this.actualQty.doubleValue(); }
|
|
|
|
|
public Double getRecQty() {
|
|
|
|
|
return recQty == null ? 0D : this.recQty.doubleValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getIsTaskVal() {return isTask == null ? 0 : this.isTask.intValue();}
|
|
|
|
|
public Integer getIsTaskVal() {
|
|
|
|
|
return isTask == null ? 0 : this.isTask.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getOrderMasterStatus() { return orderMasterStatus== null ? 0 : this.orderMasterStatus.intValue(); }
|
|
|
|
|
public Integer getOrderMasterStatus() {
|
|
|
|
|
return orderMasterStatus == null ? 0 : this.orderMasterStatus.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Version
|
|
|
|
|
@Column(name = "LOCK_VERSION")
|
|
|
|
@ -229,7 +245,7 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("业务类型")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.OUT_MOVEMENT_BUSI_TYPE.class,refForeignKey = "value",value = "description")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.OUT_MOVEMENT_BUSI_TYPE.class, refForeignKey = "value", value = "description")
|
|
|
|
|
public Integer busiType;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SN")
|
|
|
|
|