This commit is contained in:
2021-07-07 19:30:07 +00:00
parent 01f2a5bbfc
commit 416f5cd33c
3 changed files with 11 additions and 4 deletions

View File

@@ -32,6 +32,10 @@ namespace AyaNova.Models
public long CustomerId { get; set; }
[NotMapped]
public string CustomerViz { get; set; }
[NotMapped]
public string CustomerTechNotesViz { get; set; }
public long? ProjectId { get; set; }
[NotMapped]
public string ProjectViz { get; set; }

View File

@@ -18,6 +18,8 @@ namespace AyaNova.Models
[NotMapped]
public string PartViz { get; set; }
[NotMapped]
public string PartNameViz { get; set; }
[NotMapped]
public string UpcViz { get; set; }
[Required]
public long PartWarehouseId { get; set; }
@@ -51,7 +53,7 @@ namespace AyaNova.Models
[NotMapped]
public decimal LineTotalViz { get; set; }//line total netViz + taxes
//workaround for notification
//workaround for notification
[NotMapped, JsonIgnore]
public List<string> Tags { get; set; } = new List<string>();
[NotMapped, JsonIgnore]