Custom Value not saving in checkout page












0















I am making a module to insert a custom fields to quote address.



My File



Modulename/etc/frontend/di.xml



<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
<plugin name="impunkj_add_custom_field" type="ImpunkjCheckoutPluginCheckoutModelCheckoutLayoutProcessor" sortOrder="100"/>
</type>
</config>


Modulename/etc/extension_attributes.xml



<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd">
<extension_attributes for="MagentoQuoteApiDataAddressInterface">
<attribute code="dropdown" type="string" />
</extension_attributes>
</config>


Also Layout Processor
ImpunkjCheckoutPluginCheckoutModelCheckout



<?php
namespace ImpunkjCheckoutPluginCheckoutModelCheckout;


class LayoutProcessor
{
/**
* @param MagentoCheckoutBlockCheckoutLayoutProcessor $subject
* @param array $jsLayout
* @return array
*/
public function afterProcess(
MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
array $jsLayout
) {
$customAttributeCode = 'dropdown';
$customField = [
'component' => 'Magento_Ui/js/form/element/abstract',
'config' => [
// customScope is used to group elements within a single form (e.g. they can be validated separately)
'customScope' => 'shippingAddress.custom_attributes',
'customEntry' => null,
'template' => 'ui/form/field',
'elementTmpl' => 'ui/form/element/input',
'tooltip' => [
'description' => 'this is what the field is for',
],
],
'dataScope' => 'shippingAddress.custom_attributes' . '.' . $customAttributeCode,
'label' => 'Custom Attribute',
'provider' => 'checkoutProvider',
'sortOrder' => 0,
'validation' => [
'required-entry' => true
],
'options' => ,
'filterBy' => null,
'customEntry' => null,
'visible' => true,
];
$jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children'][$customAttributeCode] = $customField;
return $jsLayout;
}
}


Also in
Checkout/view/frontend/require-config.js



var config = {
config: {
mixins: {
'Magento_Checkout/js/action/set-shipping-information': {
'Impunkj_Checkout/js/action/set-shipping-information-mixin': true
}
}
}
};


File
Modulename/view/frontend/web/js/action/set-shipping-information-mixin.js



/*jshint browser:true jquery:true*/
/*global alert*/
define([
'jquery',
'mage/utils/wrapper',
'Magento_Checkout/js/model/quote'
], function ($, wrapper, quote) {
'use strict';

return function (setShippingInformationAction) {

return wrapper.wrap(setShippingInformationAction, function (originalAction) {
var shippingAddress = quote.shippingAddress();
if (shippingAddress['extension_attributes'] === undefined) {
shippingAddress['extension_attributes'] = {};
}

shippingAddress['extension_attributes']['dropdown'] = shippingAddress.customAttributes['dropdown'];
// pass execution to original action ('Magento_Checkout/js/action/set-shipping-information')
return originalAction();
});
};
});


Is there anything is missing
Please if someone can help with this









share



























    0















    I am making a module to insert a custom fields to quote address.



    My File



    Modulename/etc/frontend/di.xml



    <?xml version="1.0"?>
    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
    <plugin name="impunkj_add_custom_field" type="ImpunkjCheckoutPluginCheckoutModelCheckoutLayoutProcessor" sortOrder="100"/>
    </type>
    </config>


    Modulename/etc/extension_attributes.xml



    <?xml version="1.0"?>

    <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd">
    <extension_attributes for="MagentoQuoteApiDataAddressInterface">
    <attribute code="dropdown" type="string" />
    </extension_attributes>
    </config>


    Also Layout Processor
    ImpunkjCheckoutPluginCheckoutModelCheckout



    <?php
    namespace ImpunkjCheckoutPluginCheckoutModelCheckout;


    class LayoutProcessor
    {
    /**
    * @param MagentoCheckoutBlockCheckoutLayoutProcessor $subject
    * @param array $jsLayout
    * @return array
    */
    public function afterProcess(
    MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
    array $jsLayout
    ) {
    $customAttributeCode = 'dropdown';
    $customField = [
    'component' => 'Magento_Ui/js/form/element/abstract',
    'config' => [
    // customScope is used to group elements within a single form (e.g. they can be validated separately)
    'customScope' => 'shippingAddress.custom_attributes',
    'customEntry' => null,
    'template' => 'ui/form/field',
    'elementTmpl' => 'ui/form/element/input',
    'tooltip' => [
    'description' => 'this is what the field is for',
    ],
    ],
    'dataScope' => 'shippingAddress.custom_attributes' . '.' . $customAttributeCode,
    'label' => 'Custom Attribute',
    'provider' => 'checkoutProvider',
    'sortOrder' => 0,
    'validation' => [
    'required-entry' => true
    ],
    'options' => ,
    'filterBy' => null,
    'customEntry' => null,
    'visible' => true,
    ];
    $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children'][$customAttributeCode] = $customField;
    return $jsLayout;
    }
    }


    Also in
    Checkout/view/frontend/require-config.js



    var config = {
    config: {
    mixins: {
    'Magento_Checkout/js/action/set-shipping-information': {
    'Impunkj_Checkout/js/action/set-shipping-information-mixin': true
    }
    }
    }
    };


    File
    Modulename/view/frontend/web/js/action/set-shipping-information-mixin.js



    /*jshint browser:true jquery:true*/
    /*global alert*/
    define([
    'jquery',
    'mage/utils/wrapper',
    'Magento_Checkout/js/model/quote'
    ], function ($, wrapper, quote) {
    'use strict';

    return function (setShippingInformationAction) {

    return wrapper.wrap(setShippingInformationAction, function (originalAction) {
    var shippingAddress = quote.shippingAddress();
    if (shippingAddress['extension_attributes'] === undefined) {
    shippingAddress['extension_attributes'] = {};
    }

    shippingAddress['extension_attributes']['dropdown'] = shippingAddress.customAttributes['dropdown'];
    // pass execution to original action ('Magento_Checkout/js/action/set-shipping-information')
    return originalAction();
    });
    };
    });


    Is there anything is missing
    Please if someone can help with this









    share

























      0












      0








      0








      I am making a module to insert a custom fields to quote address.



      My File



      Modulename/etc/frontend/di.xml



      <?xml version="1.0"?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
      <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
      <plugin name="impunkj_add_custom_field" type="ImpunkjCheckoutPluginCheckoutModelCheckoutLayoutProcessor" sortOrder="100"/>
      </type>
      </config>


      Modulename/etc/extension_attributes.xml



      <?xml version="1.0"?>

      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd">
      <extension_attributes for="MagentoQuoteApiDataAddressInterface">
      <attribute code="dropdown" type="string" />
      </extension_attributes>
      </config>


      Also Layout Processor
      ImpunkjCheckoutPluginCheckoutModelCheckout



      <?php
      namespace ImpunkjCheckoutPluginCheckoutModelCheckout;


      class LayoutProcessor
      {
      /**
      * @param MagentoCheckoutBlockCheckoutLayoutProcessor $subject
      * @param array $jsLayout
      * @return array
      */
      public function afterProcess(
      MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
      array $jsLayout
      ) {
      $customAttributeCode = 'dropdown';
      $customField = [
      'component' => 'Magento_Ui/js/form/element/abstract',
      'config' => [
      // customScope is used to group elements within a single form (e.g. they can be validated separately)
      'customScope' => 'shippingAddress.custom_attributes',
      'customEntry' => null,
      'template' => 'ui/form/field',
      'elementTmpl' => 'ui/form/element/input',
      'tooltip' => [
      'description' => 'this is what the field is for',
      ],
      ],
      'dataScope' => 'shippingAddress.custom_attributes' . '.' . $customAttributeCode,
      'label' => 'Custom Attribute',
      'provider' => 'checkoutProvider',
      'sortOrder' => 0,
      'validation' => [
      'required-entry' => true
      ],
      'options' => ,
      'filterBy' => null,
      'customEntry' => null,
      'visible' => true,
      ];
      $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children'][$customAttributeCode] = $customField;
      return $jsLayout;
      }
      }


      Also in
      Checkout/view/frontend/require-config.js



      var config = {
      config: {
      mixins: {
      'Magento_Checkout/js/action/set-shipping-information': {
      'Impunkj_Checkout/js/action/set-shipping-information-mixin': true
      }
      }
      }
      };


      File
      Modulename/view/frontend/web/js/action/set-shipping-information-mixin.js



      /*jshint browser:true jquery:true*/
      /*global alert*/
      define([
      'jquery',
      'mage/utils/wrapper',
      'Magento_Checkout/js/model/quote'
      ], function ($, wrapper, quote) {
      'use strict';

      return function (setShippingInformationAction) {

      return wrapper.wrap(setShippingInformationAction, function (originalAction) {
      var shippingAddress = quote.shippingAddress();
      if (shippingAddress['extension_attributes'] === undefined) {
      shippingAddress['extension_attributes'] = {};
      }

      shippingAddress['extension_attributes']['dropdown'] = shippingAddress.customAttributes['dropdown'];
      // pass execution to original action ('Magento_Checkout/js/action/set-shipping-information')
      return originalAction();
      });
      };
      });


      Is there anything is missing
      Please if someone can help with this









      share














      I am making a module to insert a custom fields to quote address.



      My File



      Modulename/etc/frontend/di.xml



      <?xml version="1.0"?>
      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
      <type name="MagentoCheckoutBlockCheckoutLayoutProcessor">
      <plugin name="impunkj_add_custom_field" type="ImpunkjCheckoutPluginCheckoutModelCheckoutLayoutProcessor" sortOrder="100"/>
      </type>
      </config>


      Modulename/etc/extension_attributes.xml



      <?xml version="1.0"?>

      <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Api/etc/extension_attributes.xsd">
      <extension_attributes for="MagentoQuoteApiDataAddressInterface">
      <attribute code="dropdown" type="string" />
      </extension_attributes>
      </config>


      Also Layout Processor
      ImpunkjCheckoutPluginCheckoutModelCheckout



      <?php
      namespace ImpunkjCheckoutPluginCheckoutModelCheckout;


      class LayoutProcessor
      {
      /**
      * @param MagentoCheckoutBlockCheckoutLayoutProcessor $subject
      * @param array $jsLayout
      * @return array
      */
      public function afterProcess(
      MagentoCheckoutBlockCheckoutLayoutProcessor $subject,
      array $jsLayout
      ) {
      $customAttributeCode = 'dropdown';
      $customField = [
      'component' => 'Magento_Ui/js/form/element/abstract',
      'config' => [
      // customScope is used to group elements within a single form (e.g. they can be validated separately)
      'customScope' => 'shippingAddress.custom_attributes',
      'customEntry' => null,
      'template' => 'ui/form/field',
      'elementTmpl' => 'ui/form/element/input',
      'tooltip' => [
      'description' => 'this is what the field is for',
      ],
      ],
      'dataScope' => 'shippingAddress.custom_attributes' . '.' . $customAttributeCode,
      'label' => 'Custom Attribute',
      'provider' => 'checkoutProvider',
      'sortOrder' => 0,
      'validation' => [
      'required-entry' => true
      ],
      'options' => ,
      'filterBy' => null,
      'customEntry' => null,
      'visible' => true,
      ];
      $jsLayout['components']['checkout']['children']['steps']['children']['shipping-step']['children']['shippingAddress']['children']['shipping-address-fieldset']['children'][$customAttributeCode] = $customField;
      return $jsLayout;
      }
      }


      Also in
      Checkout/view/frontend/require-config.js



      var config = {
      config: {
      mixins: {
      'Magento_Checkout/js/action/set-shipping-information': {
      'Impunkj_Checkout/js/action/set-shipping-information-mixin': true
      }
      }
      }
      };


      File
      Modulename/view/frontend/web/js/action/set-shipping-information-mixin.js



      /*jshint browser:true jquery:true*/
      /*global alert*/
      define([
      'jquery',
      'mage/utils/wrapper',
      'Magento_Checkout/js/model/quote'
      ], function ($, wrapper, quote) {
      'use strict';

      return function (setShippingInformationAction) {

      return wrapper.wrap(setShippingInformationAction, function (originalAction) {
      var shippingAddress = quote.shippingAddress();
      if (shippingAddress['extension_attributes'] === undefined) {
      shippingAddress['extension_attributes'] = {};
      }

      shippingAddress['extension_attributes']['dropdown'] = shippingAddress.customAttributes['dropdown'];
      // pass execution to original action ('Magento_Checkout/js/action/set-shipping-information')
      return originalAction();
      });
      };
      });


      Is there anything is missing
      Please if someone can help with this







      magento2 onepage-checkout





      share












      share










      share



      share










      asked 3 mins ago









      ImpunkjImpunkj

      8411




      8411






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f259365%2fcustom-value-not-saving-in-checkout-page%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f259365%2fcustom-value-not-saving-in-checkout-page%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Polycentropodidae

          Magento 2 Error message: Invalid state change requested

          Paulmy