Ive been using the liveintegration source code and started modifying it to our needs, but ive run into a problem.
We want the navision system to make the calculation on shipment and just send us the result.
the xml received contains a column named OrderShippingFee in the Order and has a value set.
in the ProcessResponse function ive added the following:
order.ShippingFee.PriceWithVAT = Base.DoubleFromString(orderNode.SelectSingleNode("column [@columnName='OrderShippingFee']").InnerText);
but this doesn't overwrites the value it gets from DW, how can it to listen to the navision xml instead?