Firs fixes like price into PDF

This commit is contained in:
Cristiano
2026-03-26 17:23:09 +01:00
parent 9c723a7a10
commit fe58e5e7e7
26 changed files with 837 additions and 16869 deletions

View File

@@ -7,5 +7,7 @@ public class PurchaseOrder
[Key] public int Id { get; set; }
[Required, MaxLength(300)] public string? PurchaseConditions { get; set; }
[Required] public int SupplierId { get; set; }
public Supplier? Supplier { get; set; }
public List<PurchaseProduct>? PurchaseProducts { get; set; }
}