diff --git a/pkg/service/bundle/bundleBalance.go b/pkg/service/bundle/bundleBalance.go index 73598f9..babb77f 100644 --- a/pkg/service/bundle/bundleBalance.go +++ b/pkg/service/bundle/bundleBalance.go @@ -8,8 +8,9 @@ import ( "fonchain-fiee/api/bundle" "fonchain-fiee/api/cast" "fonchain-fiee/pkg/service" - "log" + "fonchain-fiee/pkg/utils" "io" + "log" "strconv" "strings" "time" @@ -280,6 +281,7 @@ func BundleExport(ctx *gin.Context) { userInfo := login.GetUserInfoFromC(ctx) exportFileName := fmt.Sprintf("%d月份余量信息.xlsx", time.Now().Month()) filePath := fmt.Sprintf("./runtime/%d/%s", userInfo.ID, exportFileName) + utils.CheckDirPath("./runtime/"+fmt.Sprint(userInfo.ID), true) res, err := service.BundleProvider.BundleBalanceExport(context.Background(), &req) if err != nil { service.Error(ctx, err)