From 804e693d959c3534db58ea1321479dd2da1cbc41 Mon Sep 17 00:00:00 2001 From: cll <931958862@qq.com> Date: Sat, 26 Jul 2025 15:42:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Statistics/Sales/index.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/pages/Statistics/Sales/index.tsx b/src/pages/Statistics/Sales/index.tsx index 66f48cd..550e176 100644 --- a/src/pages/Statistics/Sales/index.tsx +++ b/src/pages/Statistics/Sales/index.tsx @@ -133,8 +133,10 @@ const ListPage: React.FC = () => { yoone6Quantity: data?.yoone6Quantity || 0, yoone9Quantity: data?.yoone9Quantity || 0, yoone12Quantity: data?.yoone12Quantity || 0, + yoone12QuantityW: data?.yoone12QuantityW || 0, yoone15Quantity: data?.yoone15Quantity || 0, yoone18Quantity: data?.yoone18Quantity || 0, + zexQuantity: data?.zexQuantity || 0, }); return { total: data?.total || 0, @@ -213,14 +215,19 @@ const ListPage: React.FC = () => { (yooneTotal.yoone6Quantity || 0) + (yooneTotal.yoone9Quantity || 0) + (yooneTotal.yoone12Quantity || 0) + - (yooneTotal.yoone15Quantity || 0)} + (yooneTotal.yoone15Quantity || 0) + + (yooneTotal.yoone18Quantity || 0) + + (yooneTotal.zexQuantity || 0) + }
YOONE 3MG: {yooneTotal.yoone3Quantity || 0}
YOONE 6MG: {yooneTotal.yoone6Quantity || 0}
YOONE 9MG: {yooneTotal.yoone9Quantity || 0}
-
YOONE 12MG: {yooneTotal.yoone12Quantity || 0}
+
YOONE 12MG新: {yooneTotal.yoone12QuantityNew || 0}
+
YOONE 12MG白: {(yooneTotal.yoone12Quantity || 0) - (yooneTotal.yoone12QuantityNew || 0)}
YOONE 15MG: {yooneTotal.yoone15Quantity || 0}
YOONE 18MG: {yooneTotal.yoone18Quantity || 0}
+
ZEX: {yooneTotal.zexQuantity || 0}
);