DengBiao 8 mesi fa
parent
commit
58f37574a0
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      app/admin/svc/svc_data_statisstics.go

+ 2
- 2
app/admin/svc/svc_data_statisstics.go Vedi File

@@ -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)


Caricamento…
Annulla
Salva