盘点PAD组件

yun-zuoyi
jimmy 6 years ago
parent b65f6197c5
commit 94f588cfdb

@ -93,4 +93,8 @@ public class WmsCSOrderDetails extends BaseBean {
@Column(name = "TRANS_STATUS")
@ApiParam(value = "处理状态", example = "1")
public Integer transStatus;
public Double getQty() {
return this.qty == null ? 0 : this.qty;
}
}

@ -96,4 +96,36 @@ public class WmsStockQuan extends BaseBean {
@ColumnDefault("0")
@ApiParam(value = "锁定数量", example = "0")
private Double lockQty;
public Double getQty() {
return this.qty == null ? 0 : this.qty;
}
public Double getFailQty() {
return this.failQty == null ? 0 : this.failQty;
}
public Double getHoldQty() {
return this.holdQty == null ? 0 : this.holdQty;
}
public Double getQcQty() {
return this.qcQty == null ? 0 : this.qcQty;
}
public Double getRinQty() {
return this.rinQty == null ? 0 : this.rinQty;
}
public Double getFreezeQty() {
return this.freezeQty == null ? 0 : this.freezeQty;
}
public Double getConsignQty() {
return this.consignQty == null ? 0 : this.consignQty;
}
public Double getLockQty() {
return this.lockQty == null ? 0 : this.lockQty;
}
}

@ -120,4 +120,12 @@ public class WmsTaskDetails extends BaseBean {
@Column(name = "DEST_AREA_NO")
@ApiParam("目的库存地代码")
public String destAreaNo;
public Double getQty() {
return this.qty == null ? 0 : this.qty;
}
public Double getTransQty() {
return this.transQty == null ? 0 : this.transQty;
}
}

Loading…
Cancel
Save