|
|
@@ -560,6 +560,25 @@ void CPosPrinter::PrintWaimaiOrderShouyin(CWaimaiOrder& order)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ //打印是否上楼
|
|
|
+ if (order.m_is_upstairs == "1")
|
|
|
+ {
|
|
|
+ string content = "*** 配送上楼 ***";
|
|
|
+ POS_TextOut(content, true, true, 1);
|
|
|
+
|
|
|
+ POS_FeedLine();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ if (order.m_is_delivery_upstairs == "1" || order.m_is_delivery_upstairs == "2")
|
|
|
+ {
|
|
|
+ string content = "*** 楼下自提 ***";
|
|
|
+ POS_TextOut(content, true, true, 1);
|
|
|
+
|
|
|
+ POS_FeedLine();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
POS_FeedLine();
|
|
|
|
|
|
//打印取货方式
|