Proposal For Implementing the MOQ functionality in SCA website.

Proposal Summary  This proposal covers the implementation of the MOQ (Multiple Order Quantity) functionality in the Suite Commerce Website of OX Tools Global.  Requirement  Currently in the NetSuite, MOQ functionality is implemented for creating sales orders.  For the customers who have MOQ feature enabled in the customer record, we have to implement multiple order quantity… Continue reading Proposal For Implementing the MOQ functionality in SCA website.

Sitebuilder website cart update for minimum order

In sitebuilder website cart page to set a minimum order message need to update in shopping cart tab. When minimum order amount is below $35. Then a message will show and the the checkout button made disable. var stotal = $(“#carttablerowtotal .carttablecellamount”).text().slice(1).replace(/,/g, ”); var st = Number(stotal).toFixed(2); if (st < 35) {  $(“<span class=’minimumorder’>A minimum… Continue reading Sitebuilder website cart update for minimum order

Proposal For making cart text as configurable in the webstore

This proposal covers the development of making cart text as configurable in the webstore for Thermogard domains.  Requirement  In the cart page, the text at the top section need to make it  configurable in the webstore for Thermogard domains.  Our solution  We can make the cart text as configurable by using an extension. We are… Continue reading Proposal For making cart text as configurable in the webstore

Sorting Functionality In Cart

Client Needs to Change the default sorting method which is currently used for sorting the cart items.By default, the items are sorted in the order they were added. So, it need be changed to sort on the basis of brand and sub-category. define(     ‘JJ.CartSCrollUpdate.CartScrollUpdate’, [     ‘JJ.CartSCrollUpdate.CartScrollUpdate.View’, ‘Cart.Item.Actions.View’, ‘GlobalViews.Modal.View’, ‘Profile.Model’, ‘Cart.AddToCart.Button.View’, ‘Cart.Summary.View’,… Continue reading Sorting Functionality In Cart

Error while adding matrix item to cart

When a shopper adds a Matrix Item to the cart, an error “Sorry, there is a problem with this Item and can not be purchased at this time. Please check back later.” will pop-up and item cannot be added. One of the possible causes of the issue is a misconfiguration of the Transaction Item Options associated for the Matrix Item. Solution To… Continue reading Error while adding matrix item to cart

Add promotion using extensibility API

Applies a promotion to the cart. If the promotion code is valid and successfully applied to the order, the promotion appears in the cart automatically and the order total is updated. Returns a Deferred object. If the promise resolved, it returns a Promise object. If the promise is rejected (because the promotion could not be… Continue reading Add promotion using extensibility API