shish 3 years ago
parent
commit
f58845eeb0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      biz/wx/classes/WxMessageClass.php

+ 2 - 2
biz/wx/classes/WxMessageClass.php

@@ -137,9 +137,9 @@ class WxMessageClass extends BaseClass
         $first = "您有新的订单,请注意查收";
         $first = "您有新的订单,请注意查收";
         $customName = $order->customName ?? '';
         $customName = $order->customName ?? '';
         if (!empty($customName)) {
         if (!empty($customName)) {
-            $first = '下单客户:' . $customName;
+            $first = $customName;
             if (isset($order->shopAdminId) && !empty($order->shopAdminId)) {
             if (isset($order->shopAdminId) && !empty($order->shopAdminId)) {
-                $first = '下单客户:' . $customName . "  【店员开单】";
+                $first = $customName . "  【店员开单】";
             }
             }
         }
         }