This commit is contained in:
aozhiwei 2023-08-02 13:36:35 +08:00
parent 606cf6db23
commit 7fedd3720d

View File

@ -40,8 +40,7 @@ class ShopController extends BaseAuthedController {
{
$a = getReqVal('a', '');
if (
$a != 'buyGoodsDirect' &&
$a != 'inappPurchaseDiamonds'
$a != 'buyGoodsDirect'
) {
parent::_handlePre();
}
@ -420,14 +419,6 @@ class ShopController extends BaseAuthedController {
$cbService->dispatch($action);
}
public function inappPurchaseDiamonds()
{
error_log('inappPurchaseDiamonds:' . json_encode($_REQUEST));
$cbService = new CallBackService();
$action = 'outappPurchase';
$cbService->dispatch($action);
}
private function getInAppBalance()
{
$recordDb = InAppRecord::get();