Skip to content

Commit

Permalink
Merge pull request #126 from igoryan-k/main
Browse files Browse the repository at this point in the history
ReturnFBAOrderRow fix to include Status
  • Loading branch information
abuzuhri authored Mar 2, 2022
2 parents b54e5fe + 9a973f6 commit fe7595c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Source/FikaAmazonAPI/ReportGeneration/ReturnFBAOrderReport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public class ReturnFBAOrderRow
public string FulfillmentCenterId { get; set; }
public string DetailedDisposition { get; set; }
public string Reason { get; set; }
public string Status { get; set; }
public string LicensePlateNumber { get; set; }
public string CustomerComments { get; set; }
public string refNumber { get; set; }
Expand All @@ -50,8 +51,9 @@ public static ReturnFBAOrderRow FromCsv(string csvLine, string refNumber)
row.FulfillmentCenterId = values[7];
row.DetailedDisposition = values[8];
row.Reason = values[9];
row.LicensePlateNumber = values[10];
row.CustomerComments = values[11];
row.Status = values[10];
row.LicensePlateNumber = values[11];
row.CustomerComments = values[12];
row.refNumber = refNumber;

return row;
Expand Down

0 comments on commit fe7595c

Please sign in to comment.