This commit is contained in:
2021-02-16 00:14:55 +00:00
parent fd1c19bc91
commit 31a66de8a5
3 changed files with 33 additions and 7 deletions

View File

@@ -16,18 +16,24 @@ namespace AyaNova.Models
public uint Concurrency { get; set; }
[Required]
public long Serial { get; set; }
public bool Active { get; set; }
public long Serial { get; set; }//WAS PO NUMBER
public string Notes { get; set; }
public string Wiki { get; set; }
public string CustomFields { get; set; }
public List<string> Tags { get; set; }
public string VendorMemo { get; set; }
public long DropShipToCustomerId { get; set; }
public string ReferenceNumber { get; set; }
public long VendorId { get; set; }
public DateTime? OrderedDate { get; set; }
public DateTime? ExpectedReceiveDate { get; set; }
public PurchaseOrderStatus Status { get; set; }
public long ProjectId { get; set; }
public string Text1 { get; set; }
public string Text2 { get; set; }
public List<PurchaseOrderItem> Items { get; set; } = new List<PurchaseOrderItem>();
public PurchaseOrder()
{
Tags = new List<string>();