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
@@ -11,6 +11,8 @@ public class GetQuotationByIdWithProductsSpec : SingleResultSpecification<Quotat
.Where(x => x.Id == quotationId)
.Include(x => x.QuotationProducts!)
.ThenInclude(x => x.Product)
.ThenInclude(x => x!.Prices);
.ThenInclude(x => x!.Prices)
.Include(x => x.Customer)
.ThenInclude(x => x!.CustomerType);
}
}