This commit is contained in:
2022-07-07 23:50:30 +00:00
parent 159835116c
commit 7d68f1126c
20 changed files with 1107 additions and 25 deletions

View File

@@ -0,0 +1,63 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
internal class WorkOrderItemOutsideService
{
public long Id { get; set; }
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; }
}
}