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) + }