Configure price mapping
Price Property Mapping Settings
Setting
Value
Price Property Mapping Rules
if (s && "items" in JSON.parse(s) && JSON.parse(s).items.length > 0) { return JSON.parse(s).items[0].price; } return "";const itemTypeValue =
"itemType" in rowData.modifications
? rowData.modifications.itemType
: rowData.cells.itemType;
if (itemTypeValue === pm.secondaryAccessor.split(".")[0] && s === "") {
return { message: "Value must not be empty" };
}Last updated