Added missing field to display price of products on quotation and purchase order

This commit is contained in:
2026-05-25 11:44:18 +01:00
parent 1ae8072219
commit b59a8b6c3d
8 changed files with 2086 additions and 6 deletions
+3
View File
@@ -10,6 +10,9 @@ public class Quotation
[Required] public int CustomerId { get; set; }
public Customer? Customer { get; set; }
[Required] public int SupplierId { get; set; }
public Supplier? Supplier { get; set; }
public List<QuotationProduct>? QuotationProducts { get; set; }
}
+3 -1
View File
@@ -13,5 +13,7 @@ public class Supplier
[Required, MaxLength(100)] public string? City { get; set; }
[Required] public int DeliveryDelay { get; set; }
public List<Price>? Prices { get; set; }
public List<Price>? Prices { get; set; }
public List<Quotation>? Quotations { get; set; }
public List<PurchaseOrder>? PurchaseOrders { get; set; }
}