diff --git a/app/Services/DoctorAccountService.php b/app/Services/DoctorAccountService.php index 4872aee..a20d06e 100644 --- a/app/Services/DoctorAccountService.php +++ b/app/Services/DoctorAccountService.php @@ -59,23 +59,6 @@ class DoctorAccountService extends BaseService // 获取医生账户余额 $balance_account = $this->getDoctorBalanceAccount($user_info['client_user_id']); -// // 获取医生月度余额 -// $amount_total_month = $this->getDoctorMonthAmountTotal($user_info['client_user_id'], $date); -// -// // 获取医生月度已提现金额-审核通过时间为准 -// $params = array(); -// $params['doctor_id'] = $user_info['client_user_id']; -// -// $start_time = date('Y-m-01',strtotime($date)); -// $end_time = date('Y-m-t 24:00:00',strtotime($date)); -// $created_at = [$start_time,$end_time]; -// $doctor_withdrawal = DoctorWithdrawal::getOneLatestTime($params,$created_at,['*']); -// if (empty($doctor_withdrawal)) { -// $withdrawal_amount_month = 0; -// } else { -// $withdrawal_amount_month = $doctor_withdrawal['actual_withdrawal_amount']; -// } - // 获取医生每月账单数据 $bill = [];