Hi,
With the new Economic-integration, are orderlinefields transferred to Economic as well?
If so, where are they show in Economic?
--
Best regards
Kurt Moskjaer Andersen
Hi,
With the new Economic-integration, are orderlinefields transferred to Economic as well?
If so, where are they show in Economic?
--
Best regards
Kurt Moskjaer Andersen
Hi Kurt,
no the orderline fields are not exported. You can use the Extensibility api to do the stuff with the orderline which will be transferred to economic. You will need to override the:
/// <summary>
/// Method to do manipulation with the ordinary objEconomicOrderline object before it is sent to E-conomic
/// </summary>
/// <param name="orderLine">Dynamiceb eCommerce OrderLine object that is currently under processing</param>
/// <param name="economicOrderLine">E-conomic IOrderLineData object that is currently being created</param>
/// <returns>IOrderLineData object</returns>
public virtual IOrderLineData EconomicOrderline(Dynamicweb.Ecommerce.Orders.OrderLine orderLine, IOrderLineData economicOrderLine)
{
return economicOrderLine;
}
Regards, Dmitrij
Hi Dmitrij,
Thank you for your answer. I will look further into it.
Best regards
Kurt
You must be logged in to post in the forum