|
|
@ -46,9 +46,9 @@ public class WmsMessageStyleModel implements Serializable {
|
|
|
|
this.message = message;
|
|
|
|
this.message = message;
|
|
|
|
if (actQty == 0) {//未处理
|
|
|
|
if (actQty == 0) {//未处理
|
|
|
|
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.CREATE.getValue();
|
|
|
|
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.CREATE.getValue();
|
|
|
|
} else if (actQty > 0) {
|
|
|
|
} else if (transQty > actQty) {//处理中
|
|
|
|
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.RECEIPT.getValue();
|
|
|
|
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.RECEIPT.getValue();
|
|
|
|
} else if (actQty == transQty) {
|
|
|
|
} else if (actQty == transQty) {//处理完成
|
|
|
|
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.RECEIPT_FINISH.getValue();
|
|
|
|
this.odStatus = WmsEnumUtil.MASTER_ORDER_STATUS.RECEIPT_FINISH.getValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|