|
|
@@ -582,18 +582,19 @@ class OrderClass extends BaseClass
|
|
|
if (isset($order->fullAddress) && !empty($order->fullAddress)) {
|
|
|
$content .= '<B>' . $order->fullAddress . '(' . $order->showAddress . ')' . '</B><BR><BR>';
|
|
|
}
|
|
|
- if (isset($order->cardInfo) && !empty($order->cardInfo)) {
|
|
|
- $content .= '<B>贺卡内容:' . $order->cardInfo . '</B><BR><BR>';
|
|
|
- }
|
|
|
if ($order->anonymity == 1) {
|
|
|
$content .= '<B>匿名派送!!!</B><BR><BR>';
|
|
|
} else {
|
|
|
if (isset($order->bookMobile) && !empty($order->bookMobile)) {
|
|
|
- //$bookName = $order->bookName ?? '';
|
|
|
- //$bookMobile = $order->bookMobile ?? '';
|
|
|
- //$content .= '订花人:' . $bookName . ' ' . $bookMobile . '<BR><BR>';
|
|
|
+ $bookName = $order->bookName ?? '';
|
|
|
+ $bookMobile = $order->bookMobile ?? '';
|
|
|
+ $content .= '<B>' . $bookName . '</B><BR>';
|
|
|
+ $content .= '<B>' . $bookMobile . '</B><BR>';
|
|
|
}
|
|
|
}
|
|
|
+ if (isset($order->cardInfo) && !empty($order->cardInfo)) {
|
|
|
+ $content .= '<B>贺卡内容:' . $order->cardInfo . '</B><BR><BR>';
|
|
|
+ }
|
|
|
if (isset($respond['remark']) && !empty($respond['remark'])) {
|
|
|
$content .= '<BR>';
|
|
|
$content .= '备注:<BR>';
|