|
|
|
@ -200,6 +200,14 @@ public class WmsStockSn extends BaseBean {
|
|
|
|
|
@ApiParam(value = "工厂名称")
|
|
|
|
|
public String organizeName;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "物料数量总和")
|
|
|
|
|
public Double sumPartQty;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "条码数量总和")
|
|
|
|
|
public Long snCount;
|
|
|
|
|
|
|
|
|
|
public WmsStockSn(){}
|
|
|
|
|
|
|
|
|
|
public WmsStockSn(String partNo){
|
|
|
|
@ -209,4 +217,10 @@ public class WmsStockSn extends BaseBean {
|
|
|
|
|
public Double getQty() {return qty == null ? 0L : this.qty.doubleValue(); }
|
|
|
|
|
|
|
|
|
|
public Double getInputNCQty(){return inputNCQty == null ? 0L : this.inputNCQty.doubleValue();}
|
|
|
|
|
|
|
|
|
|
public WmsStockSn( Long snCount, Double sumPartQty,String locateNo) {
|
|
|
|
|
this.snCount = snCount;
|
|
|
|
|
this.sumPartQty = sumPartQty;
|
|
|
|
|
this.locateNo = locateNo;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|