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;
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
add a comment |
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
add a comment |
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
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
magento-2.1 invoice
asked Feb 1 '17 at 11:26
michalhosnamichalhosna
2351 silver badge14 bronze badges
2351 silver badge14 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
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
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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