飞鹅打印机打印菜品小票根据使用类型区分type
This commit is contained in:
parent
71b6cfe95c
commit
2af6d62737
|
|
@ -674,7 +674,9 @@ public class PrintMechineConsumer {
|
|||
break;
|
||||
case "one": //一菜一品
|
||||
|
||||
if (!orderInfo.getStatus().equals("unpaid")) {
|
||||
if (orderInfo.getPayType() != null
|
||||
&& "postPay".equals(orderInfo.getPayType())
|
||||
&& !orderInfo.getStatus().equals("unpaid")) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue