How to update a custom field in product list items when add items to the wish list

Extend ‘ProductList.Item.Model’ and update the create function. when we add items to wish list a record is created in product list items,after creating the record we will get a internal id of the created record. So we can use ‘nlapiSubmitField’ to set value in custom field. For eg- We have Brand,Product category field in product… Continue reading How to update a custom field in product list items when add items to the wish list

Proposal For Group By Categories in Wishlist page

Proposal Summary  This proposal covers the scope for the implementation of grouping the items By Categories in Wishlist page in Point Australia website.  Requirement  Items that are currently on order form needs to be grouped by categories in Wishlist page.  For example, if a customer adds 3 different types of Incense sticks on order form,… Continue reading Proposal For Group By Categories in Wishlist page

Proposal For Pallet notes and Fee

Proposal Summary  This proposal covers the scope of, implementing Pallet Notes and Fee  in the Thermoguard website domains.  Requirement  Implementing to charge customers for their pallets used. Anything over 10 cartons needs a pallet, and a pallet holds 32 cartons. So, for every 32 cartons of gel packs, it will be an additional $20.  … Continue reading Proposal For Pallet notes and Fee

How to get the check box value in javascript file and pass value in model

create a custom record in netsuite . For eg field id is ‘custentity_jj_tac’ In html page set input id,name as custom record id and set a data action . set data action in events and in binding also set the custom record id also write a code for change event and in that function we… Continue reading How to get the check box value in javascript file and pass value in model

How to solve wishlist Loading / internal error

If wish list is not loaded If wish list is not loaded thereWe can check wish list details in customer record Or go to customization->List,Record,&fields-> Record The error may be due to the items in wish list. check whether items Display in Website is checked or not. Remove items one by one. Then the error… Continue reading How to solve wishlist Loading / internal error

How To Set the value of a custom transaction body field on the order

To use this method, pass in an object that contains the field ID, its type, and the value you want to set.var cart = container.getComponent(‘Cart’);var data = {fieldId: “custbody_customerref”,type: “string”,value: “C123456”} cart.setTransactionBodyField(data).then(function() {console.log(data.fieldId + ‘ was set to ‘ + data.value);}).fail(function(error) {console.log(‘setTransactionBodyField failed.’);});