How or when get invoice it's increment idHow to get invoice from order itemEvent to observe invoice creation and get the invoiced item quantitiesMagento how to create partial invoice programmaticallySales Order Invoice - save_after event getId() issueNot getting invoice id in after “sales_order_invoice_save_after” event magento2Magento2 - plugin / event after invoice is createdMagento 2 override associated product price (configurable and it's child)Magento 2 - Plugin for invoice creation after its savedObserver for invoice creation after it is savedMagento2: Can I charge orders by order currency & use that for invoices/creditmemos as well?

What does "autolyco-sentimental" mean?

How can I perform a deterministic physics simulation?

How long should I wait to plug in my refrigerator after unplugging it?

Repeated! Factorials!

C# TCP server/client class

Glue-up for butcher block-style countertop

Need reasons why a satellite network would not work

Is there a general term for the items in a directory?

Is it okay to use different fingers every time while playing a song on keyboard? Is it considered a bad practice?

How to call made-up data?

Is a switch from R to Python worth it?

ZFS on Linux: Which mountpoint option when mounting manually per script?

Is there a way to say "double + any number" in German?

Properties: Left of the colon

How does Geralt transport his swords?

Can the Cauchy product of divergent series with itself be convergent?

Does a humanoid possessed by a ghost register as undead to a paladin's Divine Sense?

What is it exactly about flying a Flyboard across the English channel that made Zapata's thighs burn?

What could prevent players from leaving an island?

On the consistency of different well-polished astronomy software

If someone else uploads my GPL'd code to Github without my permission, is that a copyright violation?

Did Logical Positivism fail because it simply denied human emotion?

What's "halachic" about "Esav hates Ya'akov"?

“The Fourier transform cannot measure two phases at the same frequency.” Why not?



How or when get invoice it's increment id


How to get invoice from order itemEvent to observe invoice creation and get the invoiced item quantitiesMagento how to create partial invoice programmaticallySales Order Invoice - save_after event getId() issueNot getting invoice id in after “sales_order_invoice_save_after” event magento2Magento2 - plugin / event after invoice is createdMagento 2 override associated product price (configurable and it's child)Magento 2 - Plugin for invoice creation after its savedObserver for invoice creation after it is savedMagento2: Can I charge orders by order currency & use that for invoices/creditmemos as well?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I need to work with invoice, just after it's payed but already has increment_id.



Is there event after invoice save? Or which function generate increment_id, so i can create plugin on it.



Thanks.




PS: I tried those to observe those two events, but none of them gave me invoice with increment_id.
- sales_order_invoice_register
- sales_order_invoice_pay










share|improve this question






























    0















    I need to work with invoice, just after it's payed but already has increment_id.



    Is there event after invoice save? Or which function generate increment_id, so i can create plugin on it.



    Thanks.




    PS: I tried those to observe those two events, but none of them gave me invoice with increment_id.
    - sales_order_invoice_register
    - sales_order_invoice_pay










    share|improve this question


























      0












      0








      0








      I need to work with invoice, just after it's payed but already has increment_id.



      Is there event after invoice save? Or which function generate increment_id, so i can create plugin on it.



      Thanks.




      PS: I tried those to observe those two events, but none of them gave me invoice with increment_id.
      - sales_order_invoice_register
      - sales_order_invoice_pay










      share|improve this question














      I need to work with invoice, just after it's payed but already has increment_id.



      Is there event after invoice save? Or which function generate increment_id, so i can create plugin on it.



      Thanks.




      PS: I tried those to observe those two events, but none of them gave me invoice with increment_id.
      - sales_order_invoice_register
      - sales_order_invoice_pay







      magento-2.1 invoice






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 1 '17 at 11:26









      michalhosnamichalhosna

      2351 silver badge14 bronze badges




      2351 silver badge14 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          0














          Following class is responsible for generating increment_id



          Magento/SalesSequence/Model/Sequence.php




          /**
          * Retrieve next value
          *
          * @return string
          */
          public function getNextValue()

          $this->connection->insert($this->meta->getSequenceTable(), []);
          $this->lastIncrementId = $this->connection->lastInsertId($this->meta->getSequenceTable());
          return $this->getCurrentValue();



          So you can use plugin for any modification. Its global function for order, invoice, shipment, creditmemo.



          You can pass registry param from



          MagentoSalesSequenceModelManager



          As an example:




          /**
          * Returns sequence for given entityType and store
          *
          * @param string $entityType
          * @param int $storeId
          * @return MagentoFrameworkDBSequenceSequenceInterface
          */
          public function aroundGetSequence(
          MagentoSalesSequenceModelManager $subject,
          Closure $proceed,
          $entityType,
          $storeId
          )

          // $entityType is 'order' or 'shipment' or 'invoice' or 'creditmemo'
          $this->_objectManager->get('MagentoFrameworkRegistry')->register('sr_entityType', $entityType);
          return $proceed($entityType, $storeId);



          Now you get this registry param from getNextValue and modify your own way.






          share|improve this answer

























          • I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

            – michalhosna
            Feb 1 '17 at 14:11


















          0














          I have a similar requirement, I need to get invoice information after invoice save from admin.


          I fulfil the requirement using the event observer.
          app/code/Anshu/Customization/etc/adminhtml/events.xml



          <?xml version="1.0"?>
          <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
          <event name="controller_action_postdispatch_sales_order_invoice_save">
          <observer name="observer_admin_invoice_save" instance="AnshuCustomizationObserverAnshuInvoiceSave" />
          </event>
          </config>


          app/code/Anshu/Customization/Observer/AdminInvoiceSave.php



          <?php

          namespace AnshuCustomizationObserver;

          use MagentoFrameworkEventObserverInterface;

          class AnshuInvoiceSave implements ObserverInterface

          /**
          * @var MagentoFrameworkRegistry
          */

          protected $_registry;

          public function __construct(
          MagentoFrameworkRegistry $registry
          )

          $this->_registry = $registry;


          public function execute(MagentoFrameworkEventObserver $observer)

          $invoice = $this->getInvoiceObject();
          // My Customization


          private function getInvoiceObject()

          return $this->_registry->registry('current_invoice');





          Check if it is helpful to you.

          Magento version was 2.2.1






          share|improve this answer





























            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%2f157462%2fhow-or-when-get-invoice-its-increment-id%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Following class is responsible for generating increment_id



            Magento/SalesSequence/Model/Sequence.php




            /**
            * Retrieve next value
            *
            * @return string
            */
            public function getNextValue()

            $this->connection->insert($this->meta->getSequenceTable(), []);
            $this->lastIncrementId = $this->connection->lastInsertId($this->meta->getSequenceTable());
            return $this->getCurrentValue();



            So you can use plugin for any modification. Its global function for order, invoice, shipment, creditmemo.



            You can pass registry param from



            MagentoSalesSequenceModelManager



            As an example:




            /**
            * Returns sequence for given entityType and store
            *
            * @param string $entityType
            * @param int $storeId
            * @return MagentoFrameworkDBSequenceSequenceInterface
            */
            public function aroundGetSequence(
            MagentoSalesSequenceModelManager $subject,
            Closure $proceed,
            $entityType,
            $storeId
            )

            // $entityType is 'order' or 'shipment' or 'invoice' or 'creditmemo'
            $this->_objectManager->get('MagentoFrameworkRegistry')->register('sr_entityType', $entityType);
            return $proceed($entityType, $storeId);



            Now you get this registry param from getNextValue and modify your own way.






            share|improve this answer

























            • I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

              – michalhosna
              Feb 1 '17 at 14:11















            0














            Following class is responsible for generating increment_id



            Magento/SalesSequence/Model/Sequence.php




            /**
            * Retrieve next value
            *
            * @return string
            */
            public function getNextValue()

            $this->connection->insert($this->meta->getSequenceTable(), []);
            $this->lastIncrementId = $this->connection->lastInsertId($this->meta->getSequenceTable());
            return $this->getCurrentValue();



            So you can use plugin for any modification. Its global function for order, invoice, shipment, creditmemo.



            You can pass registry param from



            MagentoSalesSequenceModelManager



            As an example:




            /**
            * Returns sequence for given entityType and store
            *
            * @param string $entityType
            * @param int $storeId
            * @return MagentoFrameworkDBSequenceSequenceInterface
            */
            public function aroundGetSequence(
            MagentoSalesSequenceModelManager $subject,
            Closure $proceed,
            $entityType,
            $storeId
            )

            // $entityType is 'order' or 'shipment' or 'invoice' or 'creditmemo'
            $this->_objectManager->get('MagentoFrameworkRegistry')->register('sr_entityType', $entityType);
            return $proceed($entityType, $storeId);



            Now you get this registry param from getNextValue and modify your own way.






            share|improve this answer

























            • I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

              – michalhosna
              Feb 1 '17 at 14:11













            0












            0








            0







            Following class is responsible for generating increment_id



            Magento/SalesSequence/Model/Sequence.php




            /**
            * Retrieve next value
            *
            * @return string
            */
            public function getNextValue()

            $this->connection->insert($this->meta->getSequenceTable(), []);
            $this->lastIncrementId = $this->connection->lastInsertId($this->meta->getSequenceTable());
            return $this->getCurrentValue();



            So you can use plugin for any modification. Its global function for order, invoice, shipment, creditmemo.



            You can pass registry param from



            MagentoSalesSequenceModelManager



            As an example:




            /**
            * Returns sequence for given entityType and store
            *
            * @param string $entityType
            * @param int $storeId
            * @return MagentoFrameworkDBSequenceSequenceInterface
            */
            public function aroundGetSequence(
            MagentoSalesSequenceModelManager $subject,
            Closure $proceed,
            $entityType,
            $storeId
            )

            // $entityType is 'order' or 'shipment' or 'invoice' or 'creditmemo'
            $this->_objectManager->get('MagentoFrameworkRegistry')->register('sr_entityType', $entityType);
            return $proceed($entityType, $storeId);



            Now you get this registry param from getNextValue and modify your own way.






            share|improve this answer













            Following class is responsible for generating increment_id



            Magento/SalesSequence/Model/Sequence.php




            /**
            * Retrieve next value
            *
            * @return string
            */
            public function getNextValue()

            $this->connection->insert($this->meta->getSequenceTable(), []);
            $this->lastIncrementId = $this->connection->lastInsertId($this->meta->getSequenceTable());
            return $this->getCurrentValue();



            So you can use plugin for any modification. Its global function for order, invoice, shipment, creditmemo.



            You can pass registry param from



            MagentoSalesSequenceModelManager



            As an example:




            /**
            * Returns sequence for given entityType and store
            *
            * @param string $entityType
            * @param int $storeId
            * @return MagentoFrameworkDBSequenceSequenceInterface
            */
            public function aroundGetSequence(
            MagentoSalesSequenceModelManager $subject,
            Closure $proceed,
            $entityType,
            $storeId
            )

            // $entityType is 'order' or 'shipment' or 'invoice' or 'creditmemo'
            $this->_objectManager->get('MagentoFrameworkRegistry')->register('sr_entityType', $entityType);
            return $proceed($entityType, $storeId);



            Now you get this registry param from getNextValue and modify your own way.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 1 '17 at 11:42









            Sohel RanaSohel Rana

            25.8k3 gold badges48 silver badges66 bronze badges




            25.8k3 gold badges48 silver badges66 bronze badges















            • I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

              – michalhosna
              Feb 1 '17 at 14:11

















            • I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

              – michalhosna
              Feb 1 '17 at 14:11
















            I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

            – michalhosna
            Feb 1 '17 at 14:11





            I don't actually need to edit it. I just need to get it to external SW, but without breaking functionality of other modules, that modify increment_id. I'm not sure if this is exactly what i can use. I will investigate this further, but anyway, thanks.

            – michalhosna
            Feb 1 '17 at 14:11













            0














            I have a similar requirement, I need to get invoice information after invoice save from admin.


            I fulfil the requirement using the event observer.
            app/code/Anshu/Customization/etc/adminhtml/events.xml



            <?xml version="1.0"?>
            <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
            <event name="controller_action_postdispatch_sales_order_invoice_save">
            <observer name="observer_admin_invoice_save" instance="AnshuCustomizationObserverAnshuInvoiceSave" />
            </event>
            </config>


            app/code/Anshu/Customization/Observer/AdminInvoiceSave.php



            <?php

            namespace AnshuCustomizationObserver;

            use MagentoFrameworkEventObserverInterface;

            class AnshuInvoiceSave implements ObserverInterface

            /**
            * @var MagentoFrameworkRegistry
            */

            protected $_registry;

            public function __construct(
            MagentoFrameworkRegistry $registry
            )

            $this->_registry = $registry;


            public function execute(MagentoFrameworkEventObserver $observer)

            $invoice = $this->getInvoiceObject();
            // My Customization


            private function getInvoiceObject()

            return $this->_registry->registry('current_invoice');





            Check if it is helpful to you.

            Magento version was 2.2.1






            share|improve this answer































              0














              I have a similar requirement, I need to get invoice information after invoice save from admin.


              I fulfil the requirement using the event observer.
              app/code/Anshu/Customization/etc/adminhtml/events.xml



              <?xml version="1.0"?>
              <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
              <event name="controller_action_postdispatch_sales_order_invoice_save">
              <observer name="observer_admin_invoice_save" instance="AnshuCustomizationObserverAnshuInvoiceSave" />
              </event>
              </config>


              app/code/Anshu/Customization/Observer/AdminInvoiceSave.php



              <?php

              namespace AnshuCustomizationObserver;

              use MagentoFrameworkEventObserverInterface;

              class AnshuInvoiceSave implements ObserverInterface

              /**
              * @var MagentoFrameworkRegistry
              */

              protected $_registry;

              public function __construct(
              MagentoFrameworkRegistry $registry
              )

              $this->_registry = $registry;


              public function execute(MagentoFrameworkEventObserver $observer)

              $invoice = $this->getInvoiceObject();
              // My Customization


              private function getInvoiceObject()

              return $this->_registry->registry('current_invoice');





              Check if it is helpful to you.

              Magento version was 2.2.1






              share|improve this answer





























                0












                0








                0







                I have a similar requirement, I need to get invoice information after invoice save from admin.


                I fulfil the requirement using the event observer.
                app/code/Anshu/Customization/etc/adminhtml/events.xml



                <?xml version="1.0"?>
                <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
                <event name="controller_action_postdispatch_sales_order_invoice_save">
                <observer name="observer_admin_invoice_save" instance="AnshuCustomizationObserverAnshuInvoiceSave" />
                </event>
                </config>


                app/code/Anshu/Customization/Observer/AdminInvoiceSave.php



                <?php

                namespace AnshuCustomizationObserver;

                use MagentoFrameworkEventObserverInterface;

                class AnshuInvoiceSave implements ObserverInterface

                /**
                * @var MagentoFrameworkRegistry
                */

                protected $_registry;

                public function __construct(
                MagentoFrameworkRegistry $registry
                )

                $this->_registry = $registry;


                public function execute(MagentoFrameworkEventObserver $observer)

                $invoice = $this->getInvoiceObject();
                // My Customization


                private function getInvoiceObject()

                return $this->_registry->registry('current_invoice');





                Check if it is helpful to you.

                Magento version was 2.2.1






                share|improve this answer















                I have a similar requirement, I need to get invoice information after invoice save from admin.


                I fulfil the requirement using the event observer.
                app/code/Anshu/Customization/etc/adminhtml/events.xml



                <?xml version="1.0"?>
                <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
                <event name="controller_action_postdispatch_sales_order_invoice_save">
                <observer name="observer_admin_invoice_save" instance="AnshuCustomizationObserverAnshuInvoiceSave" />
                </event>
                </config>


                app/code/Anshu/Customization/Observer/AdminInvoiceSave.php



                <?php

                namespace AnshuCustomizationObserver;

                use MagentoFrameworkEventObserverInterface;

                class AnshuInvoiceSave implements ObserverInterface

                /**
                * @var MagentoFrameworkRegistry
                */

                protected $_registry;

                public function __construct(
                MagentoFrameworkRegistry $registry
                )

                $this->_registry = $registry;


                public function execute(MagentoFrameworkEventObserver $observer)

                $invoice = $this->getInvoiceObject();
                // My Customization


                private function getInvoiceObject()

                return $this->_registry->registry('current_invoice');





                Check if it is helpful to you.

                Magento version was 2.2.1







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 9 '18 at 10:45









                7ochem

                5,9849 gold badges37 silver badges71 bronze badges




                5,9849 gold badges37 silver badges71 bronze badges










                answered Apr 9 '18 at 10:12









                Anshu MishraAnshu Mishra

                5,9265 gold badges28 silver badges66 bronze badges




                5,9265 gold badges28 silver badges66 bronze badges






























                    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%2f157462%2fhow-or-when-get-invoice-its-increment-id%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

                    Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

                    Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

                    Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림