Scenario User would like to prioritize Web Orders over Sales Orders created via user interface (UI) when doing bulk fulfillment. The Source Field is not available as an Additional Filter when customizing Fulfill Orders page. Since Web Orders automatically generate a Confirmation Number and there is no preference set to disable this. By default, the Confirmation Number of the Web Order is displayed under the Memo column of… Continue reading Prioritize Web Orders Over Sales Orders Entered via UI When Doing Bulk Fulfillment
Tag: standard memo field
Updated the Memo(standard) filed in sales order afetr creating the SO from webiste using suite script 2
JS file define( ‘JJ.MemoFieldSetValue.MemoFieldSetValue’ , [ ‘OrderWizard.Module.Confirmation’, ‘JJ.MemoFieldSetValue.MemoFieldSetValue.SS2Model’, ‘Utils’ ] , function ( OrderWizardModuleConfirmation, memomethoddModel, Utils ) { ‘use strict’; return { mountToApp: function mountToApp(container) { var checkout = container.getComponent(“Checkout”); _.extend(OrderWizardModuleConfirmation.prototype, { getContext: _.wrap(OrderWizardModuleConfirmation.prototype.getContext, function getContext(fn) { var context = fn.apply(this, _.toArray(arguments).slice(1)); try { var order_id = this.model.attributes.confirmation.attributes.internalid; console.log(‘order_id’, order_id) this.memoModel =… Continue reading Updated the Memo(standard) filed in sales order afetr creating the SO from webiste using suite script 2