This commit is contained in:
songliang 2023-07-10 11:00:12 +08:00
parent 9cf6713938
commit 16e7aa8c2c

View File

@ -114,7 +114,7 @@ class ShopController extends BaseAuthedController
$a = getReqVal('a', '');
if (
$a != 'buyGoodsDirect' &&
$a != 'purchaseDiamonds'
$a != 'inappPurchaseDiamonds'
) {
parent::_handlePre();
}
@ -358,7 +358,7 @@ class ShopController extends BaseAuthedController
$this->_rspOk();
}
public function purchaseDiamonds()
public function inappPurchaseDiamonds()
{
// 有三种情况:
@ -366,6 +366,8 @@ class ShopController extends BaseAuthedController
// 2. 站外充值钻石,没有订单号
// 3. appstore 退款,没有订单号
error_log('----- inappPurchaseDiamonds -----');
$this->_rspOk();
}