After code cleanup

This commit is contained in:
2022-07-09 04:17:38 +00:00
parent aaed4430f1
commit f9baf2b3df
53 changed files with 255 additions and 465 deletions

View File

@@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
@@ -12,52 +9,52 @@ namespace AyaNovaQBI
public uint Concurrency { get; set; }
public string Notes { get; set; }
public long UnitId { get; set; }
public string UnitViz { get; set; }
public long? VendorSentToId { get; set; }
public string VendorSentToViz { get; set; }
public long? VendorSentViaId { get; set; }
public string VendorSentViaViz { get; set; }
public string RMANumber { get; set; }
public string TrackingNumber { get; set; }
public decimal RepairCost { get; set; }
public decimal RepairPrice { get; set; }
public decimal ShippingCost { get; set; }
public decimal ShippingPrice { get; set; }
public DateTime? SentDate { get; set; }
public DateTime? ETADate { get; set; }
public DateTime? ReturnDate { get; set; }
public long? TaxCodeId { get; set; }
public string TaxCodeViz { get; set; }
public decimal CostViz { get; set; }//Total cost shipping + repairs
public decimal PriceViz { get; set; }//Total price shipping + repairs
public decimal NetViz { get; set; }//=priceViz for standardization not because it's necessary (before taxes line total essentially)
public decimal TaxAViz { get; set; }//total amount of taxA
public decimal TaxBViz { get; set; }//total amount of taxB
public decimal LineTotalViz { get; set; }//line total netViz + taxes
//workaround for notification
public List<string> Tags { get; set; } = new List<string>();
public string Name { get; set; }
public long WorkOrderItemId { get; set; }
}
}