diff --git a/internal/pdf/service.go b/internal/pdf/service.go index 0cc5ace..6af7af7 100644 --- a/internal/pdf/service.go +++ b/internal/pdf/service.go @@ -107,8 +107,8 @@ func (ps PdfService) BuildReport(r *booking.Report, period string, month, year i return map[string]any{ "id": l.Id, "name": l.CustomerName, - "from": l.From.Format("02 01 2006"), - "to": l.To.Format("02 02 2006"), + "from": l.From.Format("02/01/2006"), + "to": l.To.Format("02/01/2006"), "total": strconv.FormatFloat(l.Total, 'f', 2, 64), "platform": l.Platform, "platform_fees": strconv.FormatFloat(l.PlatformFees, 'f', 2, 64),