|
|
@@ -300,7 +300,12 @@ class StockOutOrderClass extends BaseClass
|
|
|
$orderSn = $out->orderSn;
|
|
|
$itemList = StockOutOrderItemClass::getAllByCondition(['orderSn' => $orderSn], null, '*');
|
|
|
|
|
|
+ $sjName = $shop->merchantName ?? '';
|
|
|
+ $shopName = $shop->shopName ?? '';
|
|
|
+ $currentName = $shopName == '首店' ? $sjName : $sjName . ' ' . $shopName;
|
|
|
+
|
|
|
$content = '';
|
|
|
+ $content .= "<CB>{$currentName}</CB><BR>";
|
|
|
$content .= "<CB>出库单</CB><BR><BR>";
|
|
|
$content .= '<CB>' . $orderSn . '</CB><BR><BR>';
|
|
|
$content .= '<CB>' . date("m-d H:i", strtotime($out->outTime)) . '</CB><BR>';
|