shish 1 year ago
parent
commit
0d3490d371
1 changed files with 6 additions and 5 deletions
  1. 6 5
      biz-ghs/order/classes/RefundOrderClass.php

+ 6 - 5
biz-ghs/order/classes/RefundOrderClass.php

@@ -65,21 +65,22 @@ class RefundOrderClass extends BaseClass
         $content .= '<B>买家信息:</B><BR><BR>';
         $content .= '<B>' . $refund->customName . '</B><BR>';
         $content .= '<B>' . $refund->customMobile . '</B><BR>';
-
+        $content .= "<BR>";
+        $content .= "<BR>";
         $itemList = RefundOrderItemClass::getAllByCondition(['orderSn' => $orderSn], null, '*', null);
         if (!empty($itemList)) {
             foreach ($itemList as $itemInfo) {
                 $name = $itemInfo['name'] ?? '';
                 $num = $itemInfo['xhNum'] ?? 0;
                 $unitName = $itemInfo['xhUnitName'] ?? '扎';
-                $content .= $name . ' ' . $num . $unitName;
+                $content .= $name . ' ' . $num . $unitName . "<BR>";
             }
         }
-
         $content .= "<BR>";
-        $content .= "<CB>金额:{$refundPrice}</CB><BR><BR>";
         $content .= "<BR>";
-        $content .= "<CB>状态:待审核</CB><BR><BR>";
+        $content .= "<CB>金额:{$refundPrice}</CB><BR>";
+        $content .= "<BR>";
+        $content .= "<CB>状态:待审核</CB><BR>";
         $content .= "<BR>";
         $content .= '<AUDIO-REFUND>';
         $ext = ShopExtClass::getByCondition(['shopId' => $shopId]);