This commit is contained in:
wwb 2026-03-16 14:56:49 +08:00
parent 72902c1f88
commit df44f8e6c0
1 changed files with 3 additions and 3 deletions

View File

@ -51,9 +51,9 @@
<select id="selectOrderQtySummaryByOrderStatusAndCreateTimeBetween"
resultType="cn.hangtag.module.oms.controller.admin.trade.vo.TradeOrderSummaryRespVO">
SELECT IFNULL(SUM(0), 0) AS orderCount,
COUNT(1) AS orderAmount
SELECT
COUNT(1) AS orderCount
,ROUND(IFNULL(SUM(order_amount), 0),2) AS orderAmount
FROM oms_saleorder
WHERE deleted = FALSE
<!--<if test="billStatus != null">