修改单位

This commit is contained in:
lzh 2025-11-07 13:50:26 +08:00
parent 1b61242847
commit 200c31cd4d

View File

@ -171,7 +171,7 @@ func MetricsArtistAccountExport(ctx *gin.Context) {
cell := fmt.Sprintf("%s%d", col, row)
return f.SetCellValue(sheet, cell, v)
}
_ = write(1, r)
_ = write(1, r+1)
_ = write(2, it.ArtistName)
_ = write(3, it.UserNum)
_ = write(4, it.DmAccount)
@ -234,7 +234,7 @@ func MetricsVideoSubmitExport(ctx *gin.Context) {
cell := fmt.Sprintf("%s%d", col, row)
return f.SetCellValue(sheet, cell, v)
}
_ = write(1, r)
_ = write(1, r+1)
_ = write(2, it.ArtistName)
_ = write(3, it.UserNum)
_ = write(4, it.VideoTitle)
@ -301,8 +301,8 @@ func MetricsBalanceDetailExport(ctx *gin.Context) {
BundleAmount: item.BundleAmount,
IncreaseAmount: item.IncreaseAmount,
TotalPayAmount: item.TotalPayAmount,
Currency: item.Currency,
Fee: item.Fee,
Currency: "美元",
Fee: "$" + item.Fee,
BundleVideoNumber: item.BundleVideoNumber,
IncreaseVideoNumber: item.IncreaseVideoNumber,
BundleVideoUnitPrice: item.BundleVideoUnitPrice,