6
0
Fork 0
release
李静 2022-02-15 15:51:48 +08:00
parent 85524f5079
commit 78333acf97
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ class UserController extends Controller
$user = $request->user(); $user = $request->user();
$dealer = DealerResource::make($user->dealer)->toArray($request); $dealer = DealerResource::make($user->dealer)->toArray($request);
$dealer['current_purchase_amount'] = $calculatePurchaseAmountOfCurrentPeriod->handle($user->dealer); $dealer['current_purchase_amount'] = bcdiv($calculatePurchaseAmountOfCurrentPeriod->handle($user->dealer), '1', 2);
return response()->json([ return response()->json([
'phone' => $user->phone, 'phone' => $user->phone,

View File

@ -18,11 +18,11 @@ class DealerResource extends JsonResource
'lvl' => $this->lvl, 'lvl' => $this->lvl,
'lvl_name'=> $this->lvl_text, 'lvl_name'=> $this->lvl_text,
'is_sale' => $this->is_sale, 'is_sale' => $this->is_sale,
'guanli_values'=> $this->calculate_total_amount, //预计管理津贴 'guanli_values'=> bcdiv($this->calculate_total_amount, '1', 2), //预计管理津贴
'team_sales_value' => $this->team_sales_value, // 团队业绩 'team_sales_value' => $this->team_sales_value, // 团队业绩
'pay_info'=>$this->pay_info ?: null, 'pay_info'=>$this->pay_info ?: null,
'can_withdraw'=> $this->canWithdraw(), 'can_withdraw'=> $this->canWithdraw(),
'total_purchase_amount'=> $this->total_purchase_amount, // 总进货业绩 'total_purchase_amount'=> bcdiv($this->total_purchase_amount, '1', 2), // 总进货业绩
]; ];
} }
} }