|
|
@ -122,6 +122,10 @@ public class WmsStockQuan extends BaseBean {
|
|
|
|
@ApiParam(value = "报废数量", example = "0")
|
|
|
|
@ApiParam(value = "报废数量", example = "0")
|
|
|
|
private Double scrapQty;
|
|
|
|
private Double scrapQty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "总数量")
|
|
|
|
|
|
|
|
private Double totalQty;
|
|
|
|
|
|
|
|
|
|
|
|
public Double getQtyVal() {
|
|
|
|
public Double getQtyVal() {
|
|
|
|
return this.qty == null ? 0 : this.qty;
|
|
|
|
return this.qty == null ? 0 : this.qty;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -158,6 +162,10 @@ public class WmsStockQuan extends BaseBean {
|
|
|
|
return this.scrapQty == null ? 0 : this.scrapQty;
|
|
|
|
return this.scrapQty == null ? 0 : this.scrapQty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Double getTotalVal() {
|
|
|
|
|
|
|
|
return this.totalQty == null ? 0 : this.totalQty;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public WmsStockQuan() {
|
|
|
|
public WmsStockQuan() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|