Commit b53b082f b53b082f81f1efb559bd411fdf44bbeb9801e42b by lemon

调整数据格式

1 parent a1230dc9
...@@ -19,9 +19,11 @@ class MusicianWithdrawService extends Service ...@@ -19,9 +19,11 @@ class MusicianWithdrawService extends Service
19 */ 19 */
20 public function receiptInfoByName() 20 public function receiptInfoByName()
21 { 21 {
22 /*
22 if (!StakeholderIncomeByPayer::query()->where(['sync_status'=>1, 'withdraw_status'=>0, 'identifier'=>$this->identifier->identifier])->count()) { 23 if (!StakeholderIncomeByPayer::query()->where(['sync_status'=>1, 'withdraw_status'=>0, 'identifier'=>$this->identifier->identifier])->count()) {
23 return Response::error(ErrorCode::WITHDRAW_NO_RECORD); 24 return Response::error(ErrorCode::WITHDRAW_NO_RECORD);
24 } 25 }
26 */
25 27
26 if ($receipt = Company::query()->where(['receipt_name'=>$this->request->input('name')])->first()) { 28 if ($receipt = Company::query()->where(['receipt_name'=>$this->request->input('name')])->first()) {
27 return Response::success([ 29 return Response::success([
......