|
|
@@ -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]);
|