This commit is contained in:
2021-03-01 22:19:44 +00:00
parent ed164796c7
commit ae3d71894f
3 changed files with 21 additions and 1 deletions

View File

@@ -30,10 +30,14 @@ namespace AyaNova.Models
public string PopUpNotes { get; set; }
public bool BillHeadOffice { get; set; }
public long? HeadOfficeId { get; set; }
[NotMapped]
public string HeadOfficeViz { get; set; }
public string TechNotes { get; set; }
public string AccountNumber { get; set; }
public bool UsesBanking { get; set; }
public long? ContractId { get; set; }
[NotMapped]
public string ContractViz { get; set; }
public DateTime? ContractExpires { get; set; }
public long? DefaultServiceTemplateId { get; set; }
public string Phone1 { get; set; }

View File

@@ -24,12 +24,18 @@ namespace AyaNova.Models
public string VendorMemo { get; set; }
public long? DropShipToCustomerId { get; set; }
[NotMapped]
public string DropShipToCustomerViz { get; set; }
public string ReferenceNumber { get; set; }
public long VendorId { get; set; }
[NotMapped]
public string VendorViz { get; set; }
public DateTime? OrderedDate { get; set; }
public DateTime? ExpectedReceiveDate { get; set; }
public PurchaseOrderStatus Status { get; set; }
public long? ProjectId { get; set; }
[NotMapped]
public string ProjectViz { get; set; }
public string Text1 { get; set; }
public string Text2 { get; set; }
public List<PurchaseOrderItem> Items { get; set; } = new List<PurchaseOrderItem>();