Merge pull request 'by Robin at 20240627' (#562) from BUG-20240627-Robin into main

Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/562
This commit is contained in:
chenhao 2024-06-27 15:21:16 +08:00
commit dc04f64729
1 changed files with 4 additions and 2 deletions

View File

@ -94,7 +94,8 @@ func (s *CronService) CreateDailyStatement(ctx context.Context, param *xxl.RunRe
if h5countStr == "" {
h5countStr = "0"
}
count, err := strconv.Atoi(h5countStr)
h5countStr = strings.ReplaceAll(h5countStr, "\n", "")
count, _ := strconv.Atoi(h5countStr)
count = count / 2
h5querycount += count
@ -105,7 +106,8 @@ func (s *CronService) CreateDailyStatement(ctx context.Context, param *xxl.RunRe
if byUserIdCountStr == "" {
byUserIdCountStr = "0"
}
count, err = strconv.Atoi(byUserIdCountStr)
byUserIdCountStr = strings.ReplaceAll(byUserIdCountStr, "\n", "")
count, _ = strconv.Atoi(byUserIdCountStr)
count = count / 2
zoneListFromOusideCount += count
}