|
@@ -1026,6 +1026,18 @@ class OrderClass extends BaseClass
|
|
|
$content .= '--------------------------------<BR>';
|
|
$content .= '--------------------------------<BR>';
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ $kindNum = $respond['productStat']['kind'] ?? 0;
|
|
|
|
|
+ $bigNum = $respond['productStat']['bigNum'] ?? 0;
|
|
|
|
|
+ $smallNun = $respond['productStat']['smallNun'] ?? 0;
|
|
|
|
|
+ $content .= "<CB>共{$kindNum}种";
|
|
|
|
|
+ if ($bigNum > 0) {
|
|
|
|
|
+ $content .= ",{$bigNum}扎";
|
|
|
|
|
+ }
|
|
|
|
|
+ if ($smallNun > 0) {
|
|
|
|
|
+ $content .= ",{$smallNun}支";
|
|
|
|
|
+ }
|
|
|
|
|
+ $content .= "</CB><BR>";
|
|
|
|
|
+
|
|
|
if (isset($respond['refund']) && !empty($respond['refund'])) {
|
|
if (isset($respond['refund']) && !empty($respond['refund'])) {
|
|
|
$content .= '<CB>【已退款】</CB><BR>';
|
|
$content .= '<CB>【已退款】</CB><BR>';
|
|
|
foreach ($respond['refund'] as $current) {
|
|
foreach ($respond['refund'] as $current) {
|