From 58f37574a0aaec6a8895114e01906809c0efd6db Mon Sep 17 00:00:00 2001 From: DengBiao <2319963317@qq.com> Date: Wed, 6 Mar 2024 22:56:30 +0800 Subject: [PATCH] update --- app/admin/svc/svc_data_statisstics.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/admin/svc/svc_data_statisstics.go b/app/admin/svc/svc_data_statisstics.go index f1a201a..3704efc 100644 --- a/app/admin/svc/svc_data_statisstics.go +++ b/app/admin/svc/svc_data_statisstics.go @@ -1563,7 +1563,7 @@ func CentralKitchenForSchoolDataStatisticsExport(req md.CentralKitchenForSchoolD sess.And("central_kitchen_for_school_user_refund_day.create_at >= ?", req.StartDate) } if req.EndDate != "" { - sess.And("central_kitchen_for_school_user_refund_day.create_at <= ?", req.EndDate) + sess.And("central_kitchen_for_school_user_refund_day.pay_at <= ?", req.EndDate) } if len(req.MealKindList) > 0 { sess.In("central_kitchen_for_school_user_with_day.kind", req.MealKindList) @@ -1794,7 +1794,7 @@ func CentralKitchenForSchoolDataStatisticsExport(req md.CentralKitchenForSchoolD } } realityAmount := utils.StrToFloat64(income) - utils.StrToFloat64(refund) - rateFee := realityAmount * 0.0002 + rateFee := realityAmount * 0.002 xlsx.SetSheetRow("Sheet1", "A"+strconv.Itoa(j), &[]interface{}{v.Name, income, refund, realityAmount, rateFee}) incomeTotal += utils.StrToFloat64(income) refundTotal += utils.StrToFloat64(refund)