Commit 6c3bef01 6c3bef01d8d44eb78308bfd08f804ceac7d83a3b by lemon

账单搜狐一详情

1 parent 10a9c43e
...@@ -24,7 +24,7 @@ class MusicianWalletDetailRequest extends FormRequest ...@@ -24,7 +24,7 @@ class MusicianWalletDetailRequest extends FormRequest
24 public function rules() 24 public function rules()
25 { 25 {
26 return [ 26 return [
27 'busi_id' => ['required', 'bail', 'string'], 27 'serial_no' => ['required', 'bail', 'string'],
28 ]; 28 ];
29 } 29 }
30 30
...@@ -34,7 +34,7 @@ class MusicianWalletDetailRequest extends FormRequest ...@@ -34,7 +34,7 @@ class MusicianWalletDetailRequest extends FormRequest
34 public function messages(): array 34 public function messages(): array
35 { 35 {
36 return [ 36 return [
37 'busi_id.required' => '请提供业务流水号', 37 'serial_no.required' => '请提供业务流水号',
38 ]; 38 ];
39 } 39 }
40 } 40 }
......
...@@ -29,7 +29,7 @@ class MusicianWithdrawService extends Service ...@@ -29,7 +29,7 @@ class MusicianWithdrawService extends Service
29 */ 29 */
30 public function walletDetail() 30 public function walletDetail()
31 { 31 {
32 $income_by_payer = StakeholderIncomeSyncAppDetails::query()->where(['serial_no'=>$this->request->input('busi_id'), 'sync_status'=>1])->first(); 32 $income_by_payer = StakeholderIncomeSyncAppDetails::query()->where(['serial_no'=>$this->request->input('serial_no'), 'sync_status'=>1])->first();
33 if (empty($income_by_payer)) return Response::error(ErrorCode::ORDER_NO_FOUND); 33 if (empty($income_by_payer)) return Response::error(ErrorCode::ORDER_NO_FOUND);
34 34
35 $collate = StakeholderSongCollate::query()->with('song:id,name,singer')->where([ 35 $collate = StakeholderSongCollate::query()->with('song:id,name,singer')->where([
......
...@@ -37,7 +37,6 @@ Route::group([], function (){ ...@@ -37,7 +37,6 @@ Route::group([], function (){
37 37
38 //提现发票抬头 - 通过公司中文 38 //提现发票抬头 - 通过公司中文
39 Route::post('withdraw/receipt_by_name', 'MusicianWithdrawController@receiptByName'); 39 Route::post('withdraw/receipt_by_name', 'MusicianWithdrawController@receiptByName');
40
41 //账单状态修改 40 //账单状态修改
42 Route::post('withdraw/bill_confirm', 'MusicianWithdrawController@billConfirm'); 41 Route::post('withdraw/bill_confirm', 'MusicianWithdrawController@billConfirm');
43 //账单状态修改 42 //账单状态修改
......