shish 5 лет назад
Родитель
Сommit
9e0feaa65a
1 измененных файлов с 3 добавлено и 2 удалено
  1. 3 2
      biz-ghs/order/classes/OrderClass.php

+ 3 - 2
biz-ghs/order/classes/OrderClass.php

@@ -617,15 +617,16 @@ class OrderClass extends BaseClass
         $content .= '<B>' . $respond['custom']['fullAddress'] . '</B><BR>';
         $content .= '<B>' . $respond['custom']['customName'] . '</B><BR>';
         $content .= '<B>' . $respond['custom']['customMobile'] . '</B><BR>';
-        $content .= '<BR>';
+
         $payDate = date("Y-m-d", strtotime($orderInfo['payTime']));
         $sendTimWant = $orderInfo['sendTimeWant'] ?? '';
         if ($payDate != $sendTimWant) {
+            $content .= '<BR>';
             $content .= '送货时间:<BR>';
             $content .= '<B>' . $orderInfo['sendTimeWant'] . '</B><BR>';
         }
-        $content .= '<BR>';
         if (isset($respond['remark']) && !empty($respond['remark'])) {
+            $content .= '<BR>';
             $content .= '备注:<BR>';
             $content .= '<B>' . $respond['remark'] . '</B><BR>';
         }