|
|
@@ -301,7 +301,10 @@ class NoticeController extends PublicController
|
|
|
$shop = ShopClass::getById($shopId, true);
|
|
|
if (!empty($shop)) {
|
|
|
//花店采购供货商端微信收到通知
|
|
|
- WxMessageClass::ghsHasNewOrderInform($shop, $order);
|
|
|
+ //WxMessageClass::ghsHasNewOrderInform($shop, $order);
|
|
|
+ $noticeText = json_encode(['orderId' => $saleId]);
|
|
|
+ $noticeKey = "hdCgNoticeGhs";
|
|
|
+ Yii::$app->redis->executeCommand('LPUSH', [$noticeKey, $noticeText]);
|
|
|
}
|
|
|
//花店采购供货商端APP收到通知
|
|
|
//NoticeClass::ghsNewOrderNotice($order);
|