|
|
|
@ -160,6 +160,10 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
@ApiParam("前端表格编辑使用")
|
|
|
|
|
private Boolean isSet = false;
|
|
|
|
|
|
|
|
|
|
public String getRecommondLot() {
|
|
|
|
|
return recommondLot == null ? "无" : this.recommondLot;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getQty() {return qty == null ? 0L : this.qty.doubleValue(); }
|
|
|
|
|
|
|
|
|
|
public Double getOutQty() {return outQty == null ? 0L : this.outQty.doubleValue(); }
|
|
|
|
@ -167,4 +171,6 @@ public class WmsDocMovementDetails extends BaseBean {
|
|
|
|
|
public Double getPickQty() {return pickQty == null ? 0L : this.pickQty.doubleValue(); }
|
|
|
|
|
|
|
|
|
|
public Double getActualQty() {return actualQty == null ? 0L : this.actualQty.doubleValue(); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|