Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | 265x 265x 876x 58x 58x 818x 818x 11x 11x 11x 11x 11x 11x 11x 11x 11x 11x | 'use strict';
/**
* Change family extension
*
* @author Julien Sanchez <julien@akeneo.com>
* @author Filips Alpe <filips@akeneo.com>
* @copyright 2015 Akeneo SAS (http://www.akeneo.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
define(
[
'underscore',
'oro/translator',
'backbone',
'pim/form',
'pim/template/product/meta/change-family-modal',
'pim/common/select2/family',
'pim/initselect2',
'bootstrap-modal',
'jquery.select2'
],
function (
_,
__,
Backbone,
BaseForm,
innerModalTemplate,
Select2Configurator,
initSelect2
) {
return BaseForm.extend({
className: 'AknColumn-blockDown change-family',
innerModalTemplate: _.template(innerModalTemplate),
events: {
'click': 'showModal'
},
render: function () {
if (null !== this.getFormData().meta.family_variant) {
this.$el.remove();
return;
}
this.delegateEvents();
return BaseForm.prototype.render.apply(this, arguments);
},
showModal: function () {
var familyModal = new Backbone.BootstrapModal({
title: __('pim_enrich.entity.product.module.change_family.title'),
content: this.innerModalTemplate({
product: this.getFormData()
}),
illustrationClass: 'families',
okText: __('pim_common.save'),
cancelText: __('pim_common.cancel'),
innerDescription:
__('pim_enrich.entity.product.module.change_family.merge_attributes') + ' ' +
__('pim_enrich.entity.product.module.change_family.keep_attributes')
});
familyModal.on('ok', function () {
var selectedFamily = familyModal.$('.family-select2').select2('val') || null;
this.getRoot().trigger('pim_enrich:form:change-family:before');
this.setData({ family: selectedFamily });
familyModal.close();
this.getRoot().trigger('pim_enrich:form:change-family:after');
}.bind(this));
familyModal.open();
var options = Select2Configurator.getConfig(this.getFormData().family);
initSelect2.init(familyModal.$('.family-select2'), options).select2('val', []);
}
});
}
);
|