![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-customer/view/adminhtml/web/js/address/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'Magento_Ui/js/form/components/button', 'underscore' ], function (Button, _) { 'use strict'; return Button.extend({ defaults: { entityId: null, parentId: null, listens: { entity: 'changeVisibility' } }, /** * Apply action on target component, * but previously create this component from template if it is not existed * * @param {Object} action - action configuration */ applyAction: function (action) { if (action.params && action.params[0]) { action.params[0]['entity_id'] = this.entityId; action.params[0]['parent_id'] = this.parentId; } else { action.params = [{ 'entity_id': this.entityId, 'parent_id': this.parentId }]; } this._super(); }, /** * Change visibility of the default address shipping/billing blocks * * @param {Object} entity - customer address */ changeVisibility: function (entity) { this.visible(!_.isEmpty(entity)); } }); });