shish 2 anni fa
parent
commit
7bc716cc12
1 ha cambiato i file con 4 aggiunte e 2 eliminazioni
  1. 4 2
      biz-ghs/order/classes/StockOutOrderClass.php

+ 4 - 2
biz-ghs/order/classes/StockOutOrderClass.php

@@ -311,7 +311,6 @@ class StockOutOrderClass extends BaseClass
 
         if (isset($itemList) && !empty($itemList)) {
             foreach ($itemList as $current) {
-
                 $json = $current['itemInfo'] ?? '';
                 $info = json_decode($json, true);
                 $name = $info['itemName'] ?? '';
@@ -320,9 +319,12 @@ class StockOutOrderClass extends BaseClass
                 $show = $name . ' ' . $num . $unitName;
                 $content .= '<B>' . $show . '</B><BR>';
                 $content .= '--------------------------------<BR>';
-
             }
         }
+        $content .= '<BR>';
+        $content .= '<BR>';
+        $content .= '<BR>';
+        $content .= '<BR>';
         $shopId = $shop->id;
         $ext = ShopExtClass::getByCondition(['shopId' => $shopId]);
         $printSn = $ext['printSn'] ?? '';