feat(api): fix POST /invoice

This commit is contained in:
2025-08-26 22:40:49 +02:00
parent 788571162d
commit 794558a007
12 changed files with 181 additions and 84 deletions

View File

@@ -25,7 +25,7 @@ func New(issues []issue.Issue, company, client model.Entity, rate float64) *Repo
Company: company,
Client: client,
}
// r.Invoice = qrbill.New(r.applyRate(r.Total()), r.Company, &r.Client)
r.Invoice = qrbill.New(r.applyRate(r.Total()), r.Company, &r.Client)
return r
}