|
|
@@ -519,7 +519,7 @@ class OrderClass extends BaseClass
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if($hasSh == 1){
|
|
|
+ if ($hasSh == 1) {
|
|
|
$printSn = $ext['printSn'] ?? '';
|
|
|
}
|
|
|
}
|
|
|
@@ -589,7 +589,9 @@ class OrderClass extends BaseClass
|
|
|
$content .= '<B>匿名派送!!!</B><BR><BR>';
|
|
|
} else {
|
|
|
if (isset($order->bookMobile) && !empty($order->bookMobile)) {
|
|
|
- $content .= '订花人电话:' . $order->bookMobile . '<BR><BR>';
|
|
|
+ $bookName = $order->bookName ?? '';
|
|
|
+ $bookMobile = $order->bookMobile ?? '';
|
|
|
+ $content .= '订花人:' . $bookName . ' ' . $bookMobile . '<BR><BR>';
|
|
|
}
|
|
|
}
|
|
|
if (isset($respond['remark']) && !empty($respond['remark'])) {
|