Skip to content

Commit

Permalink
Merge pull request #29 from dynamicweb/dbe/ticket-17817-Remove-missin…
Browse files Browse the repository at this point in the history
…g-orderlines

Remove orderlines that are not in the response
  • Loading branch information
DWDBE authored Nov 7, 2024
2 parents 2e58554 + a091f0f commit 7a96c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>10.4.9</Version>
<Version>10.4.10</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<Title>Live Integration</Title>
<Description>Live Integration</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ private static void ProcessOrderLines(Settings settings, XmlDocument response, O
XmlNodeList orderLinesNodes = response.SelectNodes("//item [@table='EcomOrderLines']");

// Process OrderLines
if (orderLinesNodes != null && orderLinesNodes.Count > 0)
if (orderLinesNodes != null)
{
List<string> orderLineIds = new List<string>();
List<OrderLine> orderLines = order.OrderLines.ToList();
Expand Down

0 comments on commit 7a96c79

Please sign in to comment.