This commit is contained in:
@@ -10,7 +10,7 @@ namespace Sockeye.Models
|
||||
public class Purchase : ICoreBizObjectModel
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
public long? CustomerId { get; set; }
|
||||
[NotMapped]
|
||||
public string CustomerViz { get; set; }
|
||||
@@ -18,10 +18,9 @@ namespace Sockeye.Models
|
||||
public long VendorId { get; set; }
|
||||
[NotMapped]
|
||||
public string VendorViz { get; set; }
|
||||
public long? ProductId { get; set; }//optional because a new vendor notification won't have a product set yet also pgroup will be NotSet
|
||||
[Required]
|
||||
public long ProductId { get; set; }
|
||||
[Required]
|
||||
public ProductGroup PGroup {get;set;}
|
||||
public ProductGroup PGroup { get; set; }
|
||||
[NotMapped]
|
||||
public string ProductViz { get; set; }
|
||||
public string SalesOrderNumber { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user