Fixed error with inclusion in pdf of quotation

This commit is contained in:
2026-05-27 13:12:57 +01:00
parent cac880e35f
commit 6f2c60e6c0
3 changed files with 5 additions and 3 deletions
@@ -23,7 +23,6 @@ public class CreateQuotationEndpoint(
public override async Task HandleAsync(CreateQuotationDto req, CancellationToken ct)
{
Quotation quotation = mapper.Map<Quotation>(req);
quotation.CustomerId = 1; // TODO: A changer
await quotationsRepository.AddAsync(quotation, ct);
if (req.Products != null)