1

I am trying to override the

vendor/magento/module-configurable-product/view/adminhtml/web/js/variations/steps/summary.js
to my local module. Here is my code in requirejs-config.js file

var config = {
 "map": {
 "*": {
 "summary": "js/variations/steps/summary-custom",
 "js/variations/steps/summary": "js/variations/steps/summary-custom",
 }
 }
}

The path for this file is Vendor_Mymodule_view_adminhtml_web

And in my summary-custom.js file I have

/**
 * Copyright © 2016 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
// jscs:disable jsDoc
define([
 'uiComponent',
 'jquery',
 'ko',
 'underscore',
 'mage/translate'
], function (Component, ,ドル ko, _) {
 'use strict';
 return Component.extend({
 defaults: {
 modules: {
 variationsComponent: '${ $.variationsComponent }'
 },
 notificationMessage: {
 text: null,
 error: null
 },
 gridExisting: [],
 gridNew: [],
 gridDeleted: [],
 attributes: [],
 attributesName: [$.mage.__('Images'), $.mage.__('SKU'), $.mage.__('Quantity'), $.mage.__('Cost'), $.mage.__('Msrp'), $.mage.__('Price')],
 sections: [],
 gridTemplate: 'Magento_ConfigurableProduct/variations/steps/summary-grid'
 },
 initObservable: function () {
 this._super().observe('gridExisting gridNew gridDeleted attributes sections');
 this.gridExisting.columns = ko.observableArray();
 this.gridNew.columns = ko.observableArray();
 this.gridDeleted.columns = ko.observableArray();
 return this;
 },
 nextLabelText: $.mage.__('Generate Products'),
 variations: [],
 generateGrid: function (variations, getSectionValue) {
 var productSku = this.variationsComponent().getProductValue('sku'),
 productPrice = this.variationsComponent().getProductValue('price'),
 productWeight = this.variationsComponent().getProductValue('weight'),
 variationsKeys = [],
 gridExisting = [],
 gridNew = [],
 gridDeleted = [];
 this.variations = [];
 _.each(variations, function (options) {
 var product, images, sku, quantity, cost, msrp, price, variation,
 productId = this.variationsComponent().getProductIdByOptions(options);
 if (productId) {
 product = _.findWhere(this.variationsComponent().variations, {
 productId: productId
 });
 }
 images = getSectionValue('images', options);
 sku = productSku + _.reduce(options, function (memo, option) {
 return memo + '-' + option.label;
 }, '');
 quantity = getSectionValue('quantity', options);
 if (!quantity && productId) {
 quantity = product.quantity;
 }
 msrp = product.msrp;
 cost = product.cost;
 price = getSectionValue('price', options);
 if (!price) {
 price = productId ? product.price : productPrice;
 }
 if (productId && !images.file) {
 images = product.images;
 }
 variation = {
 options: options,
 images: images,
 sku: sku,
 quantity: quantity,
 cost: cost,
 msrp: msrp,
 price: price,
 productId: productId,
 weight: productWeight,
 editable: true
 };
 if (productId) {
 variation.sku = product.sku;
 variation.weight = product.weight;
 gridExisting.push(this.prepareRowForGrid(variation));
 } else {
 gridNew.push(this.prepareRowForGrid(variation));
 }
 this.variations.push(variation);
 variationsKeys.push(this.variationsComponent().getVariationKey(options));
 }, this);
 this.gridExisting(gridExisting);
 this.gridExisting.columns(this.getColumnsName(this.wizard.data.attributes));
 if (gridNew.length> 0) {
 this.gridNew(gridNew);
 this.gridNew.columns(this.getColumnsName(this.wizard.data.attributes));
 }
 _.each(_.omit(this.variationsComponent().productAttributesMap, variationsKeys), function (productId) {
 gridDeleted.push(this.prepareRowForGrid(
 _.findWhere(this.variationsComponent().variations, {
 productId: productId
 })
 ));
 }.bind(this));
 if (gridDeleted.length> 0) {
 this.gridDeleted(gridDeleted);
 this.gridDeleted.columns(this.getColumnsName(this.variationsComponent().productAttributes));
 }
 },
 prepareRowForGrid: function (variation) {
 var row = [];
 row.push(_.extend({
 images: []
 }, variation.images));
 row.push(variation.sku);
 row.push(variation.quantity);
 row.push(variation.cost);
 row.push(variation.msrp);
 _.each(variation.options, function (option) {
 row.push(option.label);
 });
 row.push(this.variationsComponent().getCurrencySymbol() + ' ' + variation.price);
 return row;
 },
 getGridTemplate: function () {
 return this.gridTemplate;
 },
 getGridId: function () {
 return _.uniqueId('grid_');
 },
 getColumnsName: function (attributes) {
 var columns = this.attributesName.slice(0);
 attributes.each(function (attribute, index) {
 columns.splice(5 + index, 0, attribute.label);
 }, this);
 return columns;
 },
 render: function (wizard) {
 this.wizard = wizard;
 this.sections(wizard.data.sections());
 this.attributes(wizard.data.attributes());
 this.gridNew([]);
 this.gridExisting([]);
 this.gridDeleted([]);
 this.generateGrid(wizard.data.variations, wizard.data.sectionHelper);
 },
 force: function () {
 this.variationsComponent().render(this.variations, this.attributes());
 $('[data-role=step-wizard-dialog]').trigger('closeModal');
 },
 back: function () {
 }
 });
});

But my new values are not reflected in the js file. Did I missing anything here?

Sohel Rana
36.2k3 gold badges74 silver badges94 bronze badges
asked Aug 18, 2016 at 7:17

1 Answer 1

7

Change requirejs-config.js following way:

Vendor/Module/view/adminhtml/requirejs-config.js

var config = {
 "map": {
 "*": {
 "Magento_ConfigurableProduct/js/variations/steps/summary": "Vendor_Module/js/variations/steps/summary-custom",
 }
 }
}

Now create summary-custom.js file [Vendor/Module/view/adminhtml/web/js/variations/steps/summary-custom.js]

define([
 'uiComponent',
 'jquery',
 'ko',
 'underscore',
 'mage/translate',
 'Magento_ConfigurableProduct/js/variations/steps/summary'
], function (Component, ,ドル ko, _,$t,summary) {
 'use strict';
});

Run following command and clear cache.

php bin/magento setup:static-content:deploy
answered Aug 18, 2016 at 8:07
2
  • It is not working for me. Any other solution? Commented Feb 24, 2020 at 12:17
  • Thanks , Working fine for me. Commented Jul 12, 2021 at 5:21

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.