This commit is contained in:
aozhiwei 2023-08-08 17:43:13 +08:00
parent 6a2fdf0c5a
commit 86c49e59fa
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ class LogService extends BaseService
}
public static function productGoldCallback($base, $event,$param = [])
{
$logInfo = self::goldRecord($base['account_id']);
$logInfo = self::goldRecord($base);
$data = self::userInfoByAccountId($base['account_id']);
$data['type'] = self::PRODUCT_TYPE;
$data['event_name'] = $event['name'];

View File

@ -67,7 +67,7 @@ class GameItemMarketBuyOk {
'val' => $itemNum
];
LogService::productGoldCallback(
['account_id' => $accountId],
array('account_id' => $accountId),
$event);
}
$itemService = new ShopAddItemService();