|
|
@@ -43,21 +43,6 @@ class OrderController extends BaseController
|
|
|
|
|
|
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
|
|
|
public function actionModifyReCheck()
|
|
|
{
|