From c98990749f04d3128188db7676dabd0088345b6a Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Thu, 11 May 2023 14:44:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A2=84=E8=AE=A1=E6=94=B6?= =?UTF-8?q?=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/DoctorAccountService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/DoctorAccountService.php b/app/Services/DoctorAccountService.php index c02f01e..156f923 100644 --- a/app/Services/DoctorAccountService.php +++ b/app/Services/DoctorAccountService.php @@ -124,7 +124,7 @@ class DoctorAccountService extends BaseService $order_inquiry = OrderInquiry:: getDoctorDateOrderInquiryPage($params, $reception_time, $fields,$page,$per_page); if (!empty($order_inquiry['data'])) { foreach ($order_inquiry['data'] as &$item) { - $item['estimate_income'] = floor($item['total_amount'] * 0.75 * 100) / 100; + $item['estimate_income'] = floor($item['amount_total'] * 0.75 * 100) / 100; } }