Skip to content

Commit

Permalink
Merge pull request #731 from ProNotion/main
Browse files Browse the repository at this point in the history
Fixes a typo in the "available" field of Inventory Planning Data Report
  • Loading branch information
abuzuhri authored Apr 29, 2024
2 parents a6b11f4 + a086ba8 commit 0d0727e
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 0d0727e

Please sign in to comment.