6
0
Fork 0
release
panliang 2022-05-31 09:30:17 +08:00
parent c38749e452
commit 93bbb07cee
2 changed files with 12 additions and 4 deletions

View File

@ -21,4 +21,12 @@ class ProfitController extends Controller
return OrderProfitResource::collection($list);
}
public function show($id, Request $request)
{
$user = $request->user();
$info = $user->profits()->with(['order', 'fromUser'])->findOrFail($id);
return OrderProfitResource::make($info);
}
}

View File

@ -14,7 +14,7 @@ class OrderProfitResource extends JsonResource
'order' => $this->when($this->whenLoaded('order'), [
'id' => $this->order?->id,
'sn' => $this->order?->sn,
'total_amount' => $this->order?->total_amount
'total_amount' => $this->order ? $this->order->total_amount / 100 : 0
]),
'from_user_id' => $this->from_user_id,
'user_id' => $this->user_id,
@ -24,10 +24,10 @@ class OrderProfitResource extends JsonResource
'phone' => $this->fromUser?->phone
]),
'growth_value' => $this->growth_value,
'growth_value' => (int)$this->growth_value,
'ratio' => $this->ratio,
'money' => $this->money,
'sub_money' => $this->sub_money,
'money' => (int)$this->money,
'sub_money' => (int)$this->sub_money,
'status' => $this->status,
'created_at' => $this->created_at->timestamp,
'paid_at' => $this->paid_at?->timestamp,