Developer forum

Forum » Integration » IsExported field

IsExported field

Rui Silva
Reply

Hi,

I've a custom live integration that needs to update the order field «OrderIsExported» and I changed the standard live integration to look like this:

                    if (intgrationIdNode != null && !string.IsNullOrWhiteSpace(intgrationIdNode.InnerText))
                    {
                        order.IntegrationOrderID = intgrationIdNode.InnerText;
                        order.IsExported = true;
                    }

Basically I've added the line to force the field to be filled, but in the database the first field is saved but the IsExported is not saved and remains null.

Can you check if I can expect this field to be updated using the object property or should I make a workaround to run a query to update the field in the database?

Best,

Rui Silva


Replies

 
Dmitriy Benyuk
Reply

Hi Rui,
yes, this is a bug, we will fix it. As a workaround you can use the direct sql like: "update ecomOrders set OrderIsExported = 1 where OrderID = 'YourOrderID'"
Regards, Dmitrij

 
Kristian Kirkholt Dynamicweb Employee
Kristian Kirkholt
Reply
This post has been marked as an answer

Hi Rui

The problem TFS#25364 "api save for IsExported"  has now been fixed in version 8.8.1.16

You are able to find this build in the download section:

http://doc.dynamicweb.com/releases-and-downloads/latest-releases

Please contact Dynamicweb Support if you need any additional help regarding this.

Kind Regards

Dynamicweb Support

Kristian Kirkholt

Votes for this answer: 1

 

You must be logged in to post in the forum