Parcourir la source

uipdate

add_mode
DengBiao il y a 1 an
Parent
révision
ef84d202e2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      app/admin/svc/svc_data_statisstics.go

+ 1
- 1
app/admin/svc/svc_data_statisstics.go Voir le fichier

@@ -1000,6 +1000,7 @@ func CentralKitchenForSchoolDataStatisticsExport(req md.CentralKitchenForSchoolD

titleList = []string{"学校名称", "预定总费用", "退款总计"}
xlsx.SetSheetRow("Sheet1", "A1", &titleList)
j := 2 //表头被第一行用了,只能从第二行开始
for _, v := range m {
var income, refund string
//统计收入
@@ -1037,7 +1038,6 @@ func CentralKitchenForSchoolDataStatisticsExport(req md.CentralKitchenForSchoolD
refund = mapArr2[0]["total"]
}
}
j := 2 //表头被第一行用了,只能从第二行开始
xlsx.SetSheetRow("Sheet1", "A"+strconv.Itoa(j), &[]interface{}{v.Name, income, refund})
j++
}


Chargement…
Annuler
Enregistrer