This commit is contained in:
2021-05-13 15:49:42 +00:00
parent 18c9a56ebc
commit 95e219d36c
4 changed files with 203 additions and 17 deletions

View File

@@ -18,13 +18,30 @@ namespace AyaNova.Models
[Required]
public long PartWarehouseId { get; set; }
[Required]
public decimal Quantity { get; set; }
public decimal Cost { get; set; }//cost at time of entry from part table
public decimal BasePrice { get; set; }//part retail price at time of entry (V7 "Price")
public decimal Price { get; set; }//contract adjusted price or a copy of BasePrice if no contract
public decimal ManualDiscountPct { get; set; }// (V7 "Discount") ad-hoc / % off of the contractprice (which is always set regardless if contract or not) entered manually
public decimal Quantity { get; set; }
public long? TaxPartSaleId { get; set; }
//PRICE FIELDS
[Required]
public decimal Cost { get; set; }
[Required]
public decimal ListPrice { get; set; }
[Required]
public decimal Price { get; set; }
[Required]
public string TaxName { get; set; }
[Required]
public decimal TaxAPct { get; set; }
[Required]
public decimal TaxBPct { get; set; }
[Required]
public bool TaxOnTax { get; set; }
[NotMapped]
public decimal TaxAViz { get; set; }
[NotMapped]
public decimal TaxBViz { get; set; }
[NotMapped]
public decimal LineTotalViz { get; set; }
//UTILITY FIELDS
[NotMapped]