| @item.ProductName |
@item.Batch |
+ @item.Serial |
@item.Expiration?.ToShortDateString() |
@item.Available |
@@ -145,6 +147,7 @@
ProductId = matchedItem.ProductId,
ProductName = matchedItem.ProductName,
Batch = matchedItem.Batch,
+ Serial = matchedItem.Serial,
Expiration = matchedItem.Expiration,
Available = matchedItem.Quantity,
Selected = 1,
@@ -181,6 +184,7 @@
ProductId = x.ProductId,
ProductName = x.ProductName,
Batch = x.Batch,
+ Serial= x.Serial,
Expiration = x.Expiration,
Quantity = x.Selected,
LocationId = x.LocationId
@@ -213,6 +217,7 @@
public int ProductId { get; set; }
public string ProductName { get; set; } = string.Empty;
public string Batch { get; set; } = string.Empty;
+ public string Serial { get; set; } = string.Empty;
public DateTime? Expiration { get; set; }
public decimal Available { get; set; }
public decimal Selected { get; set; }
|