|
@@ -1246,20 +1246,20 @@ void CPosPrinter::PrintWaimaiOrderChufang(CWaimaiOrder& order)
|
|
|
{
|
|
{
|
|
|
string name = "姓名:" + CLewaimaiString::UTF8ToANSI(order.m_customer_name);
|
|
string name = "姓名:" + CLewaimaiString::UTF8ToANSI(order.m_customer_name);
|
|
|
|
|
|
|
|
- POS_TextOut(name, false, false);
|
|
|
|
|
|
|
+ POS_TextOut(name, true, true);
|
|
|
POS_FeedLine();
|
|
POS_FeedLine();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//电话
|
|
//电话
|
|
|
string phone = "电话:" + CLewaimaiString::UTF8ToANSI(order.m_phone);
|
|
string phone = "电话:" + CLewaimaiString::UTF8ToANSI(order.m_phone);
|
|
|
- POS_TextOut(phone, false, false);
|
|
|
|
|
|
|
+ POS_TextOut(phone, true, true);
|
|
|
POS_FeedLine();
|
|
POS_FeedLine();
|
|
|
|
|
|
|
|
//地址
|
|
//地址
|
|
|
if (order.m_is_selftake != "1")
|
|
if (order.m_is_selftake != "1")
|
|
|
{
|
|
{
|
|
|
string address = "地址:" + CLewaimaiString::UTF8ToANSI(order.m_address);
|
|
string address = "地址:" + CLewaimaiString::UTF8ToANSI(order.m_address);
|
|
|
- POS_TextOut(address, false, false);
|
|
|
|
|
|
|
+ POS_TextOut(address, false, true);
|
|
|
POS_FeedLine();
|
|
POS_FeedLine();
|
|
|
}
|
|
}
|
|
|
|
|
|