Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
abuzuhri committed Apr 29, 2024
2 parents 36431b6 + 0d0727e commit ea4e769
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class InventoryPlanningDataRow
public string ASIN { get; set; }
public string ProductName { get; set; }
public string Condition { get; set; }
public int? Avaliable { get; set; }
public int? Available { get; set; }
public int? PendingRemovalQuantity { get; set; }
public int? InvAge181To330Days { get; set; }
public int? InvAge331To365Days { get; set; }
Expand Down Expand Up @@ -99,7 +99,7 @@ public static InventoryPlanningDataRow FromRow(TableRow rowData, string refNumbe
row.ASIN = rowData.GetString("asin");
row.ProductName = rowData.GetString("product-name");
row.Condition = rowData.GetString("condition");
row.Avaliable= DataConverter.GetInt(rowData.GetString("avaliable"));
row.Available = DataConverter.GetInt(rowData.GetString("available"));
row.PendingRemovalQuantity = DataConverter.GetInt(rowData.GetString("pending-removal-quantity"));
row.InvAge0To90Days = DataConverter.GetInt(rowData.GetString("inv-age-0-to-90-days"));
row.InvAge91To180Days = DataConverter.GetInt(rowData.GetString("inv-age-91-to-180-days"));
Expand Down

0 comments on commit ea4e769

Please sign in to comment.