Jacob D
07/14/2022, 9:53 PMonlineprice
of an item directly without having to loop through the pricing sublist? I’ve tried record.getValue({ fieldId: 'onlineprice' });
but no dice.Marvin
07/14/2022, 10:01 PMitem_record_standard_mode.getMatrixSublistValue({
sublistId: "price",
fieldId: "price",
column: 0,
line: 5,
});
With multi-currency. The number following price
like price1
will represent the currency id.
item_record_standard_mode.getMatrixSublistValue({
sublistId: "price1",
fieldId: "price",
column: 0,
line: 5,
});
Jacob D
07/14/2022, 10:05 PMJacob D
07/14/2022, 10:05 PMMarvin
07/14/2022, 10:06 PMJacob D
07/14/2022, 10:33 PMpricelevelname
to check and see if it’s the “Online Price”… 😠Marvin
07/14/2022, 10:38 PMbattk
07/14/2022, 11:06 PMbattk
07/14/2022, 11:07 PM