去除注释

This commit is contained in:
wucongxing8150 2024-04-08 18:39:19 +08:00
parent f87de0a595
commit 8b37043113

View File

@ -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 = [];