*
Showing
1 changed file
with
4 additions
and
0 deletions
| ... | @@ -30,6 +30,8 @@ class MusicianBalanceService extends Service | ... | @@ -30,6 +30,8 @@ class MusicianBalanceService extends Service |
| 30 | 'remain_prepaid'=> '0.00', | 30 | 'remain_prepaid'=> '0.00', |
| 31 | ]; | 31 | ]; |
| 32 | 32 | ||
| 33 | return Response::success($account); | ||
| 34 | |||
| 33 | //累计提现 | 35 | //累计提现 |
| 34 | $account['cash_total'] = CashOutOrder::query()->where(['cash_out_uid'=>$this->request->input('cash_out_uid'), 'status'=>1, 'withdraw_state'=>1])->sum('cash_out_money'); | 36 | $account['cash_total'] = CashOutOrder::query()->where(['cash_out_uid'=>$this->request->input('cash_out_uid'), 'status'=>1, 'withdraw_state'=>1])->sum('cash_out_money'); |
| 35 | 37 | ||
| ... | @@ -67,6 +69,8 @@ class MusicianBalanceService extends Service | ... | @@ -67,6 +69,8 @@ class MusicianBalanceService extends Service |
| 67 | 'amount'=> '0.00', | 69 | 'amount'=> '0.00', |
| 68 | ]; | 70 | ]; |
| 69 | 71 | ||
| 72 | return Response::success($account); | ||
| 73 | |||
| 70 | $payer = StakeholderBalanceByPayer::query()->with('subject:no,name')->identify()->get(); | 74 | $payer = StakeholderBalanceByPayer::query()->with('subject:no,name')->identify()->get(); |
| 71 | 75 | ||
| 72 | foreach ($payer as $item) { | 76 | foreach ($payer as $item) { | ... | ... |
-
Please register or sign in to post a comment