diff --git a/app/Services/DoctorAccountService.php b/app/Services/DoctorAccountService.php index 500256f..7f54f16 100644 --- a/app/Services/DoctorAccountService.php +++ b/app/Services/DoctorAccountService.php @@ -306,7 +306,7 @@ class DoctorAccountService extends BaseService $amount_total = floor($doctor_account['balance_account'] * 100) / 100; } - // 获取可提现订单列表 + /* // 获取可提现订单列表 $orders = Order:: getDoctorWithdrawalOrderList($params, $user_doctor['is_platform_deep_cooperation'], ['*']); if (empty($orders)){ // 无订单,账户余额强制赋0; @@ -339,7 +339,7 @@ class DoctorAccountService extends BaseService $diff_amount_total = abs($amount_total - $expected_amount_total); if ($diff_amount_total >= 1){ return fail(HttpEnumCode::HTTP_ERROR, "提现金额错误"); - } + }*/ // 计算医生个人所得税 $income_tax = $this->computeIndividualIncomeTax($amount_total); @@ -353,7 +353,6 @@ class DoctorAccountService extends BaseService $result['amount_total'] = $amount_total; // 账户余额 $result['withdrawal_amount'] = $withdrawal_amount; // 提现金额 $result['income_tax'] = $income_tax; // 个人所得税 - $result['order_nos'] = $order_nos; // 订单号 return success($result); }