| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- namespace App\Http\Controllers\admin;
- use App\Constants\HttpStatus;
- use App\Http\Controllers\Controller;
- use App\Models\Config;
- use App\Services\BalanceLogService;
- use App\Services\RebateService;
- use App\Services\WalletService;
- use Carbon\Carbon;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Validation\ValidationException;
- use Exception;
- use App\Models\Rebate as RebateModel;
- class Rebate extends Controller
- {
- function index()
- {
- try {
- $search = request()->validate([
- 'page' => ['nullable', 'integer', 'min:1'],
- 'limit' => ['nullable', 'integer', 'min:1'],
- 'member_id' => ['nullable', 'integer', 'min:1'],
- 'date' => ['nullable', 'date_format:Y-m-d'],
- 'username' => ['nullable', 'string'],
- 'first_name' => ['nullable', 'string'],
- ]);
- $result = RebateService::paginate($search);
- } catch (ValidationException $e) {
- return $this->error(HttpStatus::CUSTOM_ERROR, $e->validator->errors()->first());
- } catch (Exception $e) {
- return $this->error(intval($e->getCode()));
- }
- return $this->success($result);
- }
- public function store()
- {
- DB::beginTransaction();
- try {
- $params = request()->validate([
- 'id' => ['required', 'integer', 'min:1'],
- ]);
- $params['status'] = RebateModel::STATUS_WEI_FAN_YONG;
- $rebate = RebateService::findOne($params);
- if (!$rebate) throw new Exception('数据不存在', HttpStatus::CUSTOM_ERROR);
- $date = Carbon::now('America/New_York')->format('Y-m-d');
- if (strtotime($rebate->date) >= strtotime($date)) {
- throw new Exception('未到发放时间', HttpStatus::CUSTOM_ERROR);
- }
- // $rebate_ratio = Config::where('field', 'rebate')->first()->val;
- // $rebate->rebate_ratio = $rebate_ratio;
- $huishuiAmount = 0;
- //限额
- $huishui_restriction = Config::where('field', 'huishui_restriction')->first()->val;
- //比例
- $huishui_percentage = Config::where('field', 'huishui_percentage')->first()->val;
- $lose = $rebate->profit * -1;
- if ($lose >= $huishui_restriction) {
- $huishuiAmount = bcmul($lose, $huishui_percentage, 2); // 返利金额
- }
- $rebate->huishui_restriction = $huishui_restriction;
- $rebate->huishui_percentage = $huishui_percentage;
- $rebate->huishui_amount = $huishuiAmount;
- $rebate->status = RebateModel::STATUS_FAN_YONG;
- $rebate->audited_by = request()->user->username;
- $rebate->save();
- if ($huishuiAmount > 0) {
- $res = WalletService::updateBalance($rebate->member_id, $huishuiAmount);
- BalanceLogService::addLog($rebate->member_id, $huishuiAmount, $res['before_balance'], $res['after_balance'], "回水", $rebate->id, "输{$lose}; 回水{$huishuiAmount}");
- }
- DB::commit();
- } catch (ValidationException $e) {
- DB::rollBack();
- return $this->error(HttpStatus::CUSTOM_ERROR, $e->validator->errors()->first());
- } catch (Exception $e) {
- DB::rollBack();
- return $this->error(intval($e->getCode()), $e->getMessage());
- }
- return $this->success();
- }
- }
|