Proposal Summary This proposal covers the enhancement of image gallery section in the PDP page by implementing thumbnail scrolling functionality. So that the thumbnail images in the image gallery do not expand the main image. Each thumbnail will appear in the main gallery when we click on it. Requirement The image gallery section in the… Continue reading PROPOSAL FOR ENHANCE IMAGE GALLERY IN PDP
Author: Shyma T
PROPOSAL FOR POPUP FOR ORDERING BACKORDER ITEMS
Proposal Summary This proposal covers the display of popup or message for notifying users while placing orders for backordered items. This proposal also covers the engagement scope of Jobin and Jismi It Services LLP, as official implementation partner Of Oracle NetSuite. Requirement The customers should be able to place order with backordered items. And the… Continue reading PROPOSAL FOR POPUP FOR ORDERING BACKORDER ITEMS
Proposal For B2B Website: Partner – Customer Relationship
Proposal Summary This proposal covers the development of a SuiteCommerce website where partners/customers can purchase items for their customers using Quote creation. After the approval from the end-users (customers of partners) they can make it sales order. Requirement This proposal covers the implementation of a SuiteCommerce website where partners/customers can purchase items for their customers… Continue reading Proposal For B2B Website: Partner – Customer Relationship
Quantity pricing Object
We have some limitation to fetch the price levels and quantity levels for the item with quantity pricing. So, we have created a user event script to set the special price object in the item record as shown below. The value in the field will be set when we edit and save the item record… Continue reading Quantity pricing Object
Custom Quantity pricing table in PLP
By default, in SCA, there is no quantity pricing table on the Facet views (Grid, List and Table). But we can display the quantity pricing table on the PLP page by customization. _.extend(FacetsItemCellView.prototype, { getContext: _.wrap(FacetsItemCellView.prototype.getContext, function getContext(fn) { var context = fn.apply(this,… Continue reading Custom Quantity pricing table in PLP
Update the blog page UI with the standard Blog extension.
We can customize the HTML and Sass of any active extensions for a domain and deploy them with our theme customizations. In SCA we have standard blog extension which can’t be fetched or updated. But we can change the template and sass file of the Blog extension by overriding it in theme. To customize extension-related… Continue reading Update the blog page UI with the standard Blog extension.
Scriptable cart – To set special price level for the items in the website
The pricing level of the items on the website is specified in the NetSuite website record by default in SCA. If the user is logged in and has a pricing level in their customer record, that price level will be used. However, we may customize it by changing the price level of some of the… Continue reading Scriptable cart – To set special price level for the items in the website
How to extend the Grid, List, and Table Facet templates in SCA
The template for Facet view in PLP page can be updated as shown below. Extend the facet item child view in Facet Browse view. Override the grid, table, list view templates. _.extend(FacetsBrowseView.prototype.childViews, { ‘Facets.Items’: function () { var self = this; var display_option = _.find(this.itemsDisplayOptions, function (option) { return option.id === (self.translator.getOptionValue(‘display’) ? self.translator.getOptionValue(‘display’) :… Continue reading How to extend the Grid, List, and Table Facet templates in SCA
How to extend the Grid, List, and Table Facet templates in SCA
The template for Facet view in PLP page can be updated as shown below. Extend the facet item child view in Facet Browse view. Override the grid, table, list view templates. _.extend(FacetsBrowseView.prototype.childViews, { ‘Facets.Items’: function () { var self = this; var display_option = _.find(this.itemsDisplayOptions, function (option) { return option.id === (self.translator.getOptionValue(‘display’) ? self.translator.getOptionValue(‘display’) :… Continue reading How to extend the Grid, List, and Table Facet templates in SCA
Create a Custom Theme in SCA
There are two ways to create a theme: With the create command: This is the preferred method to create a custom theme. By fetching active theme files: To know more, see Fetch the Active Theme. When you use the create command to create a theme, maintaining and updating it is more efficient. The new theme inherits… Continue reading Create a Custom Theme in SCA