Hi All, I have noticed that wishlists on our sandb...
# suitecommerce
g
Hi All, I have noticed that wishlists on our sandbox account do not work correctly. The functionality works for adding items to a wishlist and the confirmation message is displayed. When you try to view the wishlist in My Account, the items are not showing. On NetSuite, the wishlist displays all items as expected, but this is not the case for the SCA frontend. Is this expected behaviour for a Sandbox account or is it a bug? Our production account displays wishlists as normal. Has anyone else experienced this? If so, how did you resolve it? Thanks
m
Hi, Yes, we have the same issue with one of our customers, it seems that is an issue similar with the one on the reorder, this is related with the StoreItem, we have applied a wokrarrround in the ssp libraries to work on SB.
this line is the issue:
Copy code
var itemType = productListItemSearchRecord.getValue('type', 'custrecord_ns_pl_pli_item');
on ProductList.Item.Search
is not returing the any item type
as a workarround we did the following:
Copy code
var itemType = productListItemSearchRecord.getValue('type', 'custrecord_ns_pl_pli_item') || 'InvtPart';
take into consideration that will only work well if the item is an inventory item and that is just a workarround, you should create a case in NS for this
g
Thank you @Martin. It was mainly for testing purposes and noticed it was blank. I will look at the SSP and raise a case like you say,
s
This is a bug, part of the new SC release, I guess.