*
Showing
2 changed files
with
1 additions
and
2 deletions
... | @@ -126,7 +126,6 @@ class MusicianWithdrawService extends Service | ... | @@ -126,7 +126,6 @@ class MusicianWithdrawService extends Service |
126 | 126 | ||
127 | if (empty($app)) throw new \Exception('找不到相关入账记录'); | 127 | if (empty($app)) throw new \Exception('找不到相关入账记录'); |
128 | 128 | ||
129 | |||
130 | //权益人-付款主体账户 | 129 | //权益人-付款主体账户 |
131 | StakeholderBalanceByPayer::query()->where(['condition'=>$condition])->update([ | 130 | StakeholderBalanceByPayer::query()->where(['condition'=>$condition])->update([ |
132 | 'account' => DB::raw("account + {$balance_detail->real_share_amount}"), //总收入 | 131 | 'account' => DB::raw("account + {$balance_detail->real_share_amount}"), //总收入 | ... | ... |
... | @@ -41,7 +41,7 @@ Route::group([], function (){ | ... | @@ -41,7 +41,7 @@ Route::group([], function (){ |
41 | Route::post('withdraw/receipt_by_name', 'MusicianWithdrawController@receiptByName'); | 41 | Route::post('withdraw/receipt_by_name', 'MusicianWithdrawController@receiptByName'); |
42 | 42 | ||
43 | //账单状态修改 | 43 | //账单状态修改 |
44 | Route::post('withdraw/bill_confirm', 'MusicianWithdrawController@billConfirm'); | 44 | Route::any('withdraw/bill_confirm', 'MusicianWithdrawController@billConfirm'); |
45 | //账单状态修改 | 45 | //账单状态修改 |
46 | Route::post('withdraw/status', 'MusicianWithdrawController@status'); | 46 | Route::post('withdraw/status', 'MusicianWithdrawController@status'); |
47 | //钱包-账单收益 | 47 | //钱包-账单收益 | ... | ... |
-
Please register or sign in to post a comment