This commit is contained in:
2021-05-21 22:10:51 +00:00
parent 41b17700a6
commit 3f761e64ca
3 changed files with 178 additions and 80 deletions

View File

@@ -15,11 +15,17 @@ namespace AyaNova.Models
public string Serials { get; set; }
[Required]
public long PartId { get; set; }
[NotMapped]
public string PartViz { get; set; }
[Required]
public long PartWarehouseId { get; set; }
[NotMapped]
public string PartWarehouseViz { get; set; }
[Required]
public decimal Quantity { get; set; }
public decimal Quantity { get; set; }
public long? TaxPartSaleId { get; set; }
[NotMapped]
public string TaxPartSaleViz { get; set; }
// //PRICE FIELDS
// [Required]
@@ -43,7 +49,7 @@ namespace AyaNova.Models
// [NotMapped]
// public decimal LineTotalViz { get; set; }
//Standard pricing fields (mostly to support printed reports though some show in UI)
//Standard pricing fields (mostly to support printed reports though some show in UI)
//some not to be sent with record depending on role (i.e. cost and charge in some cases)
public decimal? PriceOverride { get; set; }//user entered manually overridden price, if null then ignored in calcs otherwise this *is* the price even if zero
[NotMapped]