Add support for customizable pivot titles and ranges in summary reports
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2026-02-18 11:59:22 +11:00
parent 92c6797f05
commit 29c277f863
8 changed files with 217 additions and 90 deletions

View File

@@ -676,7 +676,7 @@ func (c *CronTask) generateReport(ctx context.Context, tableName string) error {
dest := c.reportsDir()
start := time.Now()
c.Logger.Debug("Report generation start", "table", tableName, "dest", dest)
filename, err := report.SaveTableReport(c.Logger, c.Database, ctx, tableName, dest)
filename, err := report.SaveTableReport(c.Logger, c.Database, ctx, tableName, dest, c.Settings)
if err == nil {
c.Logger.Debug("Report generation complete", "table", tableName, "file", filename, "duration", time.Since(start))
} else {