|
|
|
@ -13,6 +13,7 @@ import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 作业任务明细信息
|
|
|
|
@ -137,6 +138,10 @@ public class WmsTaskDetails extends BaseBean {
|
|
|
|
|
return this.qty == null ? 0 : this.qty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getQtyTxt(){
|
|
|
|
|
return new BigDecimal(getQty() + "").stripTrailingZeros().toPlainString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Double getTransQty() {
|
|
|
|
|
return this.transQty == null ? 0 : this.transQty;
|
|
|
|
|
}
|
|
|
|
|