shish 2 lat temu
rodzic
commit
2d66ab17e5
1 zmienionych plików z 5 dodań i 1 usunięć
  1. 5 1
      biz-ghs/order/classes/PurchaseOrderClass.php

+ 5 - 1
biz-ghs/order/classes/PurchaseOrderClass.php

@@ -157,7 +157,11 @@ class PurchaseOrderClass extends BaseClass
         $content .= '<C>供货商</C><BR>';
         $content .= '<CB>' . $orderInfo->ghsName . '</CB><BR>';
         $shortOrderSn = substr($orderSn, -4);
-        $content .= '<CB>' . $shortOrderSn . '</CB><BR>';
+        $content .= '<CB>核销码:' . $shortOrderSn . '</CB><BR>';
+        $seatSn = $orderInfo->seatSn ?? '';
+        if (!empty($seatSn)) {
+            $content .= '<CB>货位号:' . $seatSn . '</CB><BR>';
+        }
         $currentTime = date("Y-m-d H:i", strtotime($orderInfo->entryTime));
         $content .= '<C>' . $currentTime . '</C><BR>';
         if (isset($orderInfo->remark) && !empty($orderInfo->remark)) {