diff --git a/Application/Base/Service/PromoteCoinRecordService.class.php b/Application/Base/Service/PromoteCoinRecordService.class.php index ae1776fea..c8b896354 100644 --- a/Application/Base/Service/PromoteCoinRecordService.class.php +++ b/Application/Base/Service/PromoteCoinRecordService.class.php @@ -67,12 +67,8 @@ class PromoteCoinRecordService { return $items; } - public function addRecord($params,$valueDetailData = []) { + public function addRecord($params) { $data = $this->createRecord($params); - if(!empty($valueDetailData)) { - $valueDetailData['order_number'] = $data['sn']; - addValueDetail($valueDetailData); - } return M('PromoteCoinRecord', 'tab_')->add($data); } diff --git a/Application/Base/Service/PromoteService.class.php b/Application/Base/Service/PromoteService.class.php index b3aeba218..b3680d471 100644 --- a/Application/Base/Service/PromoteService.class.php +++ b/Application/Base/Service/PromoteService.class.php @@ -515,17 +515,7 @@ class PromoteService { 'remark' => $remark, ]; - $valueDetailData = [ - 'user_id' => $userId, - 'before_value' => $before_value, - 'value' => $num, - 'after_value' => $num + $before_value, - 'create_time' => time(), - 'type' => 1, - 'remark' => $remark, - 'pay_type' => 3, - ]; - $promoteCoinRecordService->addRecord($fromRecord, $valueDetailData); + $promoteCoinRecordService->addRecord($fromRecord); $incStatus = M('user_play', 'tab_')->where(['game_id' => $gameId, 'user_id' => $userId])->setInc('bind_balance', $num); $decStatus = $this->decCoin($promoteId, $num, $isUseBind ? $gameId : 0);