shish 1 yıl önce
ebeveyn
işleme
3f0f180e00

+ 0 - 15
app-ghs/controllers/OrderController.php

@@ -43,21 +43,6 @@ class OrderController extends BaseController
 
 
     public $guestAccess = ['create-order', 'order-relate', 'fast-pay', 'info'];
     public $guestAccess = ['create-order', 'order-relate', 'fast-pay', 'info'];
 
 
-    //付款成功了播报声音 ssh 20250430
-    public function actionPayOkReport()
-    {
-        $get = Yii::$app->request->get();
-        $id = $get['id'] ?? '';
-        $order = OrderClass::getById($id, true);
-        if (empty($order)) {
-            util::fail('没有找到订单');
-        }
-        if ($order->mainId != $this->mainId) {
-            util::fail('不是你的订单');
-        }
-        ShopExtClass::ghsGatheringReport($order);
-    }
-
     //复核 ssh 20241001
     //复核 ssh 20241001
     public function actionModifyReCheck()
     public function actionModifyReCheck()
     {
     {

+ 0 - 15
app-hd/controllers/OrderController.php

@@ -38,21 +38,6 @@ class OrderController extends BaseController
 
 
     public $guestAccess = ['order-relate', 'fast-pay', 'create-order', 'list'];
     public $guestAccess = ['order-relate', 'fast-pay', 'create-order', 'list'];
 
 
-    //付款成功了播报声音 ssh 20250430
-    public function actionPaySuccessReport()
-    {
-        $get = Yii::$app->request->get();
-        $id = $get['id'] ?? '';
-        $order = OrderClass::getById($id, true);
-        if (empty($order)) {
-            util::fail('没有找到订单');
-        }
-        if ($order->mainId != $this->mainId) {
-            util::fail('不是你的订单');
-        }
-        ShopExtClass::hdGatheringReport($order);
-    }
-
     //取消订单 ssh 20221231
     //取消订单 ssh 20221231
     public function actionCancel()
     public function actionCancel()
     {
     {