|
|
@@ -20,6 +20,8 @@ class ShopExtClass extends BaseClass
|
|
|
$shop = ShopClass::getById($shopId, true);
|
|
|
$orderSn = $order->orderSn ?? '';
|
|
|
$actPrice = $order->actPrice ?? 0;
|
|
|
+ $addTime = $order->addTime??'';
|
|
|
+ $addDate = date('m-d H:i', $addTime);
|
|
|
$sjId = $shop->sjId ?? 0;
|
|
|
$sj = SjClass::getById($sjId, true);
|
|
|
$sjName = $sj->name ?? '';
|
|
|
@@ -33,6 +35,8 @@ class ShopExtClass extends BaseClass
|
|
|
$content .= '<CB>' . $orderSn . '</CB><BR>';
|
|
|
$content .= "<CB>订单金额</CB><BR>";
|
|
|
$content .= "<CB>{$actPrice}</CB><BR>";
|
|
|
+ $content .= "<CB>时间</CB><BR>";
|
|
|
+ $content .= "<CB>{$addDate}</CB><BR>";
|
|
|
$content .= '--------------------------------<BR>';
|
|
|
$content .= '<CB>买家信息</CB><BR><BR>';
|
|
|
$content .= '<CB>' . $order->customName . '</CB><BR>';
|