It is useful to autofill the correct payment amount of any particular sales order by clicking on the payment button on the website. Then it will navigate to external payment link with the payment amount. The sales order Id is stored in a variable and after that it is used in the Payment link which… Continue reading How to add a sales order payment link and make the link dynamic in the extension?
Author: Somsekhar Sripati
How to resolve the error “Personalization fonts selected changing to default fonts” when continue button is pressed for personalization item?
In PDP extension in the file PDPextension.view.js Changed the previewImagPDFUrl for some fields like B2font1,B2font2,B2font3,B2font4 from compInfoFont to bankInfoFont. And also commented the values previously set values to get the both the values selected And also changed the If condition in the field trigger function: After doing all the required changes the fonts will not… Continue reading How to resolve the error “Personalization fonts selected changing to default fonts” when continue button is pressed for personalization item?
How to resolve ADD TO CART button does not work if Quantity field is selected?
In Elbrus version, clicking the Add to Cart button once does not actually add the chosen items to the cart. Instead, users must click this button twice. This error only occurs if the focus is on the Quantity field. Step 1: Create the Cart.AddToCart.Button.View.js override file: To override the Cart.AddToCart.Button.View.js file, located in the Cart module, create a directory to store… Continue reading How to resolve ADD TO CART button does not work if Quantity field is selected?
How to change the Personalization font in the Liquid pixels for an personalization item?
First for the implementation we have to create custom fields in the configuration For the custom fields List/Record has to be given for the options for the personalization fonts. Then in that list we have to add the fonts for personalization. Then in the configuration record those custom fields has to be added. The below… Continue reading How to change the Personalization font in the Liquid pixels for an personalization item?
PROPOSAL FOR THE UPDATES IN LIQUID PIXELS FUNCTIONALITY
Proposal Summary : This proposal covers the development for the updates regarding the feedback of Liquid Pixels Functionality in the SCA webstore for Artina Group website. Requirement : Give style ‘personalization your check’ button like add to cart button. Need to change the personalization font ‘Ariel’ to Times New Roman and Helvetica. Change the Place holder Bank… Continue reading PROPOSAL FOR THE UPDATES IN LIQUID PIXELS FUNCTIONALITY
How to resolve Unable to get the Free Shipping Rule Rate ‘Insufficient permissions’ for Custom Service?
To solve this error first we have to load data for standard method. var standard = nlapiLoadRecord(‘shipitem’,3); check whether we are getting all the fields of standard ship item in Script Debugger, then we are fetching shipping rule with Then we tried to load these same data using nlapiLoadRecord in our custom SuiteScript Model, we… Continue reading How to resolve Unable to get the Free Shipping Rule Rate ‘Insufficient permissions’ for Custom Service?
How to get all custom fields of a particular record type in NetSuite?
To know the mandatory fields and non-mandatory fields in a particular record type by using the following code: The required custom fields will be fetched. So, that it will be easier to pass the values to custom fields and get the values from custom fields.
How to restrict users to put a future date in Netsuite custom date field?
To restrict user from adding a future date in shipment receiving date. The field should be either today or any past date but not future. The below validation function that is executed when a field is changed by a user or client call.
How to disable a customer registering with the same email address into the website ?
Customers with different passwords, even if they have the same email address, should be able to login to their specific customer centers. Duplicate Email Detection, that prevents web store shoppers from creating duplicate customer accounts. To enable this feature: Go to Setup > Company > General Preferences. On the Web Presence subtab, check the box… Continue reading How to disable a customer registering with the same email address into the website ?
Adding sales order number in Email Notification.
When a check copy is uploaded from the purchase order an email notification is sent. To add the sales order number, first the sales order to be get from the sales order record by using the code: Then this variable has to be used in the Email body to get the sales order number in… Continue reading Adding sales order number in Email Notification.