Add a checkout section to submit a custom transaction field.

JJ.CheckoutChange.CheckoutChange.js define(   ‘JJ.CheckoutChange.CheckoutChange’   , [     ‘JJ.CheckoutChange.CheckoutChange.View’,     ‘LiveOrder.Model’,     ‘JJ.CheckoutNotice.CheckoutChange.View’   ]   , function (     CheckoutChangeView,     LiveOrderModel,     CheckoutNoticeView   ) {     ‘use strict’;     return {       mountToApp: function mountToApp(container) {         // using the ‘Layout’ component we add a new child view inside the ‘Header’ existing view          // (there will be a DOM element with the HTML attribute data-view=”Header.Logo”)         // more… Continue reading Add a checkout section to submit a custom transaction field.

To Change the sales order form based on the Domain.

We can create an extension to check the domain. For this, we have created a configuration record and a transaction body field. If the domain matches as expected, we will add the corresponding form to the sales order during creation. Using a workflow, we can then set a condition: if the transaction body field contains… Continue reading To Change the sales order form based on the Domain.

To create custom favorite item page in suitecommerce using custom record

To create a custom search in suitescript with a condition of inactive false and display on the website true. var methodNotAllowedError = { status: 405, code: ‘INVALID_ID’, message: ‘Sorry, you are not allowed to perform this action.’ }; var config = { record: ‘customrecord_favourites’, fields: { internalid: ‘internalid’, customers: ‘custrecord_fav_customer’, item: ‘custrecord_fav_item’ } }; try… Continue reading To create custom favorite item page in suitecommerce using custom record

2024.1.30 Minor Release of SuiteCommerce, SuiteCommerce MyAccount, and SuiteCommerce Advanced

Enhancements Updated the naming convention for minor releases of SuiteCommerce, SuiteCommerce MyAccount, and SuiteCommerce Advanced. This is to permit the naming any hotfixes that might be released between minor releases. For example, this major release is called 2024.1. This third minor release would have previously have been called 2024.1.3 but it has been renamed 2024.1.30.… Continue reading 2024.1.30 Minor Release of SuiteCommerce, SuiteCommerce MyAccount, and SuiteCommerce Advanced