修复队列乱跳问题。

yun-zuoyi
贾文涛 5 years ago
parent d2f9c3502a
commit 7e24f4ed4a

@ -119,6 +119,15 @@ public class QueueOrderModel implements Serializable {
public QueueOrderModel() {
}
public double getQtyVal() {
return this.qty == null ? 0.0d : this.qty;
}
public double getFinsihQtyVal() {
return this.finsihQty == null ? 0.0d : this.finsihQty;
}
public QueueOrderModel(Double queueSeq, Double queDetailSeq, String custFlagNo, String prodCfgNameRdd, String categoryNameRdd,
String serialNumber, String partNo, String partNameRdd, Integer snStatus, String workType) {
this.queueSeq = queueSeq;

Loading…
Cancel
Save