Skip to content

Commit

Permalink
Merge pull request #655 from julianpetriv/main
Browse files Browse the repository at this point in the history
Fixed FulfillmentChannel property null for UK marketplace
  • Loading branch information
abuzuhri authored Sep 19, 2023
2 parents 316761b + 4cd0e47 commit 56a9177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/FikaAmazonAPI/ReportGeneration/ProductsReport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public static ProductsRow FromRow(TableRow rowData, string refNumber)
row.BidForFeaturedPlacement = rowData.GetString("bid-for-featured-placement");
row.AddDelete = rowData.GetString("add-delete");
row.PendingQuantity = rowData.GetInt32Nullable("pending-quantity");
row.FulfillmentChannel = rowData.GetString("fulfillment-channel");
row.FulfillmentChannel = rowData.GetString("fulfillment-channel") ?? rowData.GetString("fulfilment-channel");
row.OptionalPaymentTypeExclusion = rowData.GetString("optional-payment-type-exclusion");
row.Status = rowData.GetString("status");
row.MerchantShippingGroup = rowData.GetString("merchant-shipping-group");
Expand Down

0 comments on commit 56a9177

Please sign in to comment.