From e2b47ab17b6365bade5af585cf5b84eb83f977c7 Mon Sep 17 00:00:00 2001 From: lewis <604446095@qq.com> Date: Thu, 20 Mar 2025 15:29:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E8=AF=95=E8=B4=A2=E5=8A=A1=E6=BA=AF?= =?UTF-8?q?=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/lists/PurchaseFundsLists.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/admin/lists/PurchaseFundsLists.php b/app/admin/lists/PurchaseFundsLists.php index 47a1df35..ae3e115e 100644 --- a/app/admin/lists/PurchaseFundsLists.php +++ b/app/admin/lists/PurchaseFundsLists.php @@ -68,6 +68,7 @@ class PurchaseFundsLists extends BaseAdminDataLists implements ListsSearchInterf $item['status_name'] = '已超额'; } $item['audit_time'] = empty($item['audit_time']) ? '' : date('Y-m-d H:i:s', $item['audit_time']); + $item['supply_price'] = ProductSourceLinkInfo::where('purchase_funds_id', $item['id'])->where('types', ProductSourceLinkInfo::TypeOut)->sum('total_price'); $item['current_profit'] = ProductSourceLinkInfo::where('purchase_funds_id', $item['id'])->where('types', ProductSourceLinkInfo::TypeOrder)->sum('total_price'); }) ->toArray();