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