Hi all,
I’m using Swift and trying to show customer-specific tier prices from our ERP via Live Integration on a BlanketOrderDetails page.
On product list pages, this works fine because the ProductCatalog query seems to trigger FetchProductInfos, so ProductManager.GetProductInfo(product, settings, user) returns the expected data.
On the BlanketOrderDetails page, I’m using GetLoop("OrderLinesLoop"), and there GetProductInfo(...) returns null, apparently because no live product info has been fetched yet.
I found that FetchProductInfos does exactly what I need, but it is marked internal in DW 10.4.28.
The ERP response does contain the tier pricing I need, for example:
<column columnName="Recommended_quantity_price"><![CDATA[984.00|934.80|865.92]]></column>
865.92.Is there a supported public way to trigger a Live Integration product info fetch manually outside a ProductCatalog query context when using Swift?
Thanks!
