|
|
@@ -982,6 +982,7 @@ class OrderClass extends BaseClass
|
|
|
$content .= '<B>' . $respond['sendNum'] . ' ' . $fromTypeName . '</B><BR>';
|
|
|
$content .= '--------------------------------<BR>';
|
|
|
|
|
|
+ //花悠星拿一个客户当作零售开单,不需要显示以下信息
|
|
|
if ($customId != 12145) {
|
|
|
$content .= '<B>' . $respond['custom']['customName'] . '</B><BR><BR>';
|
|
|
$content .= '<B>' . $respond['custom']['customMobile'] . '</B><BR>';
|
|
|
@@ -1125,11 +1126,14 @@ class OrderClass extends BaseClass
|
|
|
if (getenv('YII_ENV') == 'production') {
|
|
|
//丽子鲜花、花样年华 不显示扫码买花
|
|
|
if (!in_array($orderInfo->shopId, [1527, 1585, 1596])) {
|
|
|
- $content .= "<BR>";
|
|
|
- $content .= "<C>扫码买花结账</C>";
|
|
|
- $content .= "<BR>";
|
|
|
- $host = Yii::$app->params['hdHost'];
|
|
|
- $content .= "<QR>" . $host . "/#/admin/home/workbench</QR>";
|
|
|
+ //花悠星零售开单不需要打印扫码买花
|
|
|
+ if ($customId != 12145) {
|
|
|
+ $content .= "<BR>";
|
|
|
+ $content .= "<C>扫码买花结账</C>";
|
|
|
+ $content .= "<BR>";
|
|
|
+ $host = Yii::$app->params['hdHost'];
|
|
|
+ $content .= "<QR>" . $host . "/#/admin/home/workbench</QR>";
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
$content .= "<BR>";
|