This commit is contained in:
2021-09-03 18:12:35 +00:00
parent 70076203a6
commit b6ad5ec18a
4 changed files with 47 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
using System;
namespace AyaNova.Models
{
//Note this is how to define a View backed model with no key (id)
[Microsoft.EntityFrameworkCore.Keyless]
public class ViewPartInventoryRequestList
{
public long RequestId { get; set; }
public long PartId { get; set; }
public long? PartWarehouseId { get; set; }
public decimal Quantity { get; set; }
public long WoSerial { get; set; }
public string CustomerName { get; set; }
public long CustomerId { get; set; }
public long? WoStatusIdId { get; set; }
public string StatusColor { get; set; }
public string StatusName { get; set; }
public string PartNumber { get; set; }
public string PartName { get; set; }
public string PartWarehouseName { get; set; }
public long? WholesalerId { get; set; }
public string WholesalerName { get; set; }
public long? AltWholesalerId { get; set; }
public string AltWholesalerName { get; set; }
public string RequestedByUserName { get; set; }
public long? RequestedByUserId { get; set; }
public string ManufacturerName { get; set; }
public long? ManufacturerId { get; set; }
public string ManufacturerNumber { get; set; }
public string PartUPC { get; set; }
public long? PurchaseOrderId { get; set; }
public long? PurchaseOrderSerial { get; set; }
public string PurchaseOrderVendor { get; set; }
public DateTime? ExpectedReceiveDate { get; set; }
public DateTime? OrderedDate { get; set; }
public decimal PartRequestReceived { get; set; }
}//eoc
}//eons