|
|
@@ -479,6 +479,7 @@ class OrderController extends BaseController
|
|
|
|
|
|
//前台提示收款多少钱
|
|
|
ShopExtClass::hdGatheringReport($order);
|
|
|
+
|
|
|
//前台提醒出示付款码
|
|
|
if (isset($order->status) && $order->status == 1) {
|
|
|
if (isset($post['isCashier']) && $post['isCashier'] == 1) {
|
|
|
@@ -486,6 +487,12 @@ class OrderController extends BaseController
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ $shopId = $order->shopId ?? 0;
|
|
|
+ $shop = ShopClass::getById($shopId, true);
|
|
|
+ if ($order->payStatus == 1) {
|
|
|
+ WxMessageClass::gatheringIncomeInform($shop, $order);
|
|
|
+ }
|
|
|
+
|
|
|
//新制作单提示
|
|
|
$shopExt = ShopExtClass::getByCondition(['shopId' => $this->shopId], true);
|
|
|
ShopExtClass::newWorkRemind($shopExt, $order);
|