shish 2 years ago
parent
commit
1ef4fb1619
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app-ghs/controllers/OrderController.php

+ 2 - 1
app-ghs/controllers/OrderController.php

@@ -1516,12 +1516,13 @@ class OrderController extends BaseController
                 $ratio = $val['ratio'] ?? 0;
                 $currentSmallNum = bcmul($num, $ratio);
                 $totalSmallItemNum = bcadd($totalSmallItemNum, $currentSmallNum);
+                $itemRemark = $val['remark'] ?? '';
 
                 $table[] = [
                     'name' => $currentName,
                     'num' => $num,
                     'confirmNum' => '',
-                    'remark' => '',
+                    'remark' => $itemRemark,
                     'wxNumber' => 'shish3508',
                 ];
             }