Create shipment and invoice in mass actionGenerate invoice automatically when I create shipment?How to remove invoice, shipment and creditmemo from Admin grid in magento1.9.0.1 programmaticallyHow to create invoices for more than one order via mass action?automatically email invoice and shipment after creatingAuto create shipment id as soon as New order arrives in magento 1.9.2Magento 2.2: Order, Invoice, and Shipment do not display in admin gridDelete all order,invoice,credit memo, and shipment in magento 2Magento 2 Mass shipmentMass Action: Bulk invoice - Shipping charges issueCreate shipment programmatically and facing error
Is there ever any indication in the MCU as to how Spider-Man got his powers?
Why are solar panels kept tilted?
What is the largest number of identical satellites launched together?
On studying Computer Science vs. Software Engineering to become a proficient coder
Jesus' words on the Jews
Can I say: "When was your train leaving?" if the train leaves in the future?
Effects of ~10atm pressure on engine design
Missouri raptors have wild hairdos
Determine the slope and write the Cartesian equation of the line.
Why did the metro bus stop at each railway crossing, despite no warning indicating a train was coming?
Would an 8% reduction in drag outweigh the weight addition from this custom CFD-tested winglet?
Why do the lights go out when someone enters the dining room on this ship?
Is this a security concern for ubuntu users?
How exactly does artificial gravity work?
Why was Endgame Thanos so different than Infinity War Thanos?
Is Germany still exporting arms to countries involved in Yemen?
Automatically anti-predictably assemble an alliterative aria
How can I answer high-school writing prompts without sounding weird and fake?
Ito`s Lemma problem
Is there any good reason to write "it is easy to see"?
Is there anything special about -1 (0xFFFFFFFF) regarding ADC?
Is 12 minutes connection in Bristol Temple Meads long enough?
Entering the UK as a British citizen who is a Canadian permanent resident
Why is tomato paste so cheap?
Create shipment and invoice in mass action
Generate invoice automatically when I create shipment?How to remove invoice, shipment and creditmemo from Admin grid in magento1.9.0.1 programmaticallyHow to create invoices for more than one order via mass action?automatically email invoice and shipment after creatingAuto create shipment id as soon as New order arrives in magento 1.9.2Magento 2.2: Order, Invoice, and Shipment do not display in admin gridDelete all order,invoice,credit memo, and shipment in magento 2Magento 2 Mass shipmentMass Action: Bulk invoice - Shipping charges issueCreate shipment programmatically and facing error
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to create shipment + Invoice using mass action in order grid.
Can anyone tell me the approach to do this?
Share code if possible otherwise approach would be good.
Thanks.
magento2 magento2.2 magento2.3 invoice shipment
add a comment |
I want to create shipment + Invoice using mass action in order grid.
Can anyone tell me the approach to do this?
Share code if possible otherwise approach would be good.
Thanks.
magento2 magento2.2 magento2.3 invoice shipment
1
Did you search for any tutorial?
– Shoaib Munir
Mar 15 at 11:24
add a comment |
I want to create shipment + Invoice using mass action in order grid.
Can anyone tell me the approach to do this?
Share code if possible otherwise approach would be good.
Thanks.
magento2 magento2.2 magento2.3 invoice shipment
I want to create shipment + Invoice using mass action in order grid.
Can anyone tell me the approach to do this?
Share code if possible otherwise approach would be good.
Thanks.
magento2 magento2.2 magento2.3 invoice shipment
magento2 magento2.2 magento2.3 invoice shipment
edited May 9 at 4:30
Muhammad Hasham
3,80231647
3,80231647
asked Mar 15 at 11:12
Muhammad Bilal khanMuhammad Bilal khan
253
253
1
Did you search for any tutorial?
– Shoaib Munir
Mar 15 at 11:24
add a comment |
1
Did you search for any tutorial?
– Shoaib Munir
Mar 15 at 11:24
1
1
Did you search for any tutorial?
– Shoaib Munir
Mar 15 at 11:24
Did you search for any tutorial?
– Shoaib Munir
Mar 15 at 11:24
add a comment |
1 Answer
1
active
oldest
votes
I recently worked on this feature both (Invoice and Shipment). First you have to add Uicomponent
in your module
Path: appcodeVendorModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<listingToolbar name="listing_top">
<massaction name="listing_massaction">
<action name="order_invoice">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass</item>
<item name="label" xsi:type="string" translate="true">Invoice</item>
<item name="url" xsi:type="url" path="ordermass/order/massInvoice"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Invoice</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create invoice for selected items?</item>
</item>
</item>
</argument>
</action>
<action name="order_ship">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_ship_mass</item>
<item name="label" xsi:type="string" translate="true">Ship (Email)</item>
<item name="url" xsi:type="url" path="ordermass/order/massShip"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Ship (Email)</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create shipment for selected items?</item>
</item>
</item>
</argument>
</action>
</massaction>
</listingToolbar>
</listing>
After that Add routes in your module
Path: appcodeVendorModuleetcadminhtmlroutes.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="ordermass" frontName="ordermass">
<module name="Vendor_Module" />
</route>
</router>
</config>
For Invoice Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassInvoice.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassInvoice extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
/**
* @var MagentoSalesModelServiceInvoiceService
*/
protected $_invoiceService;
/**
* @var MagentoFrameworkDBTransaction
*/
protected $_transaction;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoSalesModelServiceInvoiceService $invoiceService,
MagentoFrameworkDBTransaction $transaction,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
$this->_invoiceService = $invoiceService;
$this->_transaction = $transaction;
protected function massAction(AbstractCollection $collection)
$countInvoiceOrder = 0; $NonInvoiceOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canInvoice())
// Create invoice for this order
$invoice = $this->_objectManager->create('MagentoSalesModelServiceInvoiceService')->prepareInvoice($loadedOrder);
//$invoice->getOrder()->setIsInProcess(true);
$invoice->setShippingAmount($loadedOrder->getShippingAmount());
$invoice->setBaseShippingAmount($loadedOrder->getBaseShippingAmount());
$invoice->setTaxAmount($loadedOrder->getTaxAmount());
$invoice->setBaseTaxAmount($loadedOrder->getBaseTaxAmount());
$invoice->setSubtotal($loadedOrder->getSubtotal());
$invoice->setBaseSubtotal($loadedOrder->getBaseSubtotal());
$invoice->setGrandTotal($loadedOrder->getGrandTotal());
$invoice->setBaseGrandTotal($loadedOrder->getBaseGrandTotal());
// Register as invoice item
$invoice->setRequestedCaptureCase(MagentoSalesModelOrderInvoice::CAPTURE_OFFLINE);
$invoice->register();
// Save the invoice to the order
$transaction = $this->_objectManager->create('MagentoFrameworkDBTransaction')
->addObject($invoice)
->addObject($invoice->getOrder());
$transaction->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about invoice #%1. '.$appendusername, $invoice->getId())
)->setIsCustomerNotified(false)->save();
if ($loadedOrder->canShip())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus(MagentoSalesModelOrder::STATE_PROCESSING);
$loadedOrder->addStatusToHistory($loadedOrder->getStatus(), 'Order status set to processing using Mass Invoice action '.$appendusername);
$loadedOrder->save();
$countInvoiceOrder++;
else
if (empty($NonInvoiceOrdernuumbers))
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonInvoiceOrder = $collection->count() - $countInvoiceOrder;
if ($countNonInvoiceOrder && $countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
elseif ($countNonInvoiceOrder)
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
if ($countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
For Shipment Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassShip.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassShip extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
protected function massAction(AbstractCollection $collection)
$countShipOrder = 0; $NonShipOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canShip())
$convertOrder = $this->_objectManager->create('MagentoSalesModelConvertOrder');
$shipment = $convertOrder->toShipment($loadedOrder);
// Loop through order items
foreach ($order->getAllItems() AS $orderItem)
// Register shipment
$shipment->register();
$shipment->getOrder()->setIsInProcess(true);
try
// Save created shipment and order
$shipment->save();
$shipment->getOrder()->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about shipment #%1. '.$appendusername, $shipment->getId())
)->setIsCustomerNotified(false)->save();
$itemsCheck = $loadedOrder->getItemsCollection()->addAttributeToSelect('*')->load();
foreach ($itemsCheck as $item)
if (! $item->getQtyToShip()
// Send email
$this->_objectManager->create('MagentoShippingModelShipmentNotifier')
->notify($shipment);
$shipment->save();
catch (Exception $e)
$this->messageManager->addError(__($e->getMessage()));
if ($loadedOrder->canInvoice())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus('shipped');
$loadedOrder->addStatusToHistory('shipped', 'Order status set to shipped using Mass Ship action. '.$appendusername);
$loadedOrder->save();
$countShipOrder++;
else
if (empty($NonShipOrdernuumbers))
$NonShipOrdernuumbers = $NonShipOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonShipOrdernuumbers = $NonShipOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonShipOrder = $collection->count() - $countShipOrder;
if ($countNonShipOrder && $countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
elseif ($countNonShipOrder)
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
if ($countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
This is tested code, I hope this will help
1
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
1
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
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%2f266081%2fcreate-shipment-and-invoice-in-mass-action%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I recently worked on this feature both (Invoice and Shipment). First you have to add Uicomponent
in your module
Path: appcodeVendorModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<listingToolbar name="listing_top">
<massaction name="listing_massaction">
<action name="order_invoice">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass</item>
<item name="label" xsi:type="string" translate="true">Invoice</item>
<item name="url" xsi:type="url" path="ordermass/order/massInvoice"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Invoice</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create invoice for selected items?</item>
</item>
</item>
</argument>
</action>
<action name="order_ship">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_ship_mass</item>
<item name="label" xsi:type="string" translate="true">Ship (Email)</item>
<item name="url" xsi:type="url" path="ordermass/order/massShip"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Ship (Email)</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create shipment for selected items?</item>
</item>
</item>
</argument>
</action>
</massaction>
</listingToolbar>
</listing>
After that Add routes in your module
Path: appcodeVendorModuleetcadminhtmlroutes.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="ordermass" frontName="ordermass">
<module name="Vendor_Module" />
</route>
</router>
</config>
For Invoice Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassInvoice.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassInvoice extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
/**
* @var MagentoSalesModelServiceInvoiceService
*/
protected $_invoiceService;
/**
* @var MagentoFrameworkDBTransaction
*/
protected $_transaction;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoSalesModelServiceInvoiceService $invoiceService,
MagentoFrameworkDBTransaction $transaction,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
$this->_invoiceService = $invoiceService;
$this->_transaction = $transaction;
protected function massAction(AbstractCollection $collection)
$countInvoiceOrder = 0; $NonInvoiceOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canInvoice())
// Create invoice for this order
$invoice = $this->_objectManager->create('MagentoSalesModelServiceInvoiceService')->prepareInvoice($loadedOrder);
//$invoice->getOrder()->setIsInProcess(true);
$invoice->setShippingAmount($loadedOrder->getShippingAmount());
$invoice->setBaseShippingAmount($loadedOrder->getBaseShippingAmount());
$invoice->setTaxAmount($loadedOrder->getTaxAmount());
$invoice->setBaseTaxAmount($loadedOrder->getBaseTaxAmount());
$invoice->setSubtotal($loadedOrder->getSubtotal());
$invoice->setBaseSubtotal($loadedOrder->getBaseSubtotal());
$invoice->setGrandTotal($loadedOrder->getGrandTotal());
$invoice->setBaseGrandTotal($loadedOrder->getBaseGrandTotal());
// Register as invoice item
$invoice->setRequestedCaptureCase(MagentoSalesModelOrderInvoice::CAPTURE_OFFLINE);
$invoice->register();
// Save the invoice to the order
$transaction = $this->_objectManager->create('MagentoFrameworkDBTransaction')
->addObject($invoice)
->addObject($invoice->getOrder());
$transaction->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about invoice #%1. '.$appendusername, $invoice->getId())
)->setIsCustomerNotified(false)->save();
if ($loadedOrder->canShip())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus(MagentoSalesModelOrder::STATE_PROCESSING);
$loadedOrder->addStatusToHistory($loadedOrder->getStatus(), 'Order status set to processing using Mass Invoice action '.$appendusername);
$loadedOrder->save();
$countInvoiceOrder++;
else
if (empty($NonInvoiceOrdernuumbers))
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonInvoiceOrder = $collection->count() - $countInvoiceOrder;
if ($countNonInvoiceOrder && $countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
elseif ($countNonInvoiceOrder)
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
if ($countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
For Shipment Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassShip.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassShip extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
protected function massAction(AbstractCollection $collection)
$countShipOrder = 0; $NonShipOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canShip())
$convertOrder = $this->_objectManager->create('MagentoSalesModelConvertOrder');
$shipment = $convertOrder->toShipment($loadedOrder);
// Loop through order items
foreach ($order->getAllItems() AS $orderItem)
// Register shipment
$shipment->register();
$shipment->getOrder()->setIsInProcess(true);
try
// Save created shipment and order
$shipment->save();
$shipment->getOrder()->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about shipment #%1. '.$appendusername, $shipment->getId())
)->setIsCustomerNotified(false)->save();
$itemsCheck = $loadedOrder->getItemsCollection()->addAttributeToSelect('*')->load();
foreach ($itemsCheck as $item)
if (! $item->getQtyToShip()
// Send email
$this->_objectManager->create('MagentoShippingModelShipmentNotifier')
->notify($shipment);
$shipment->save();
catch (Exception $e)
$this->messageManager->addError(__($e->getMessage()));
if ($loadedOrder->canInvoice())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus('shipped');
$loadedOrder->addStatusToHistory('shipped', 'Order status set to shipped using Mass Ship action. '.$appendusername);
$loadedOrder->save();
$countShipOrder++;
else
if (empty($NonShipOrdernuumbers))
$NonShipOrdernuumbers = $NonShipOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonShipOrdernuumbers = $NonShipOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonShipOrder = $collection->count() - $countShipOrder;
if ($countNonShipOrder && $countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
elseif ($countNonShipOrder)
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
if ($countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
This is tested code, I hope this will help
1
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
1
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
add a comment |
I recently worked on this feature both (Invoice and Shipment). First you have to add Uicomponent
in your module
Path: appcodeVendorModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<listingToolbar name="listing_top">
<massaction name="listing_massaction">
<action name="order_invoice">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass</item>
<item name="label" xsi:type="string" translate="true">Invoice</item>
<item name="url" xsi:type="url" path="ordermass/order/massInvoice"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Invoice</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create invoice for selected items?</item>
</item>
</item>
</argument>
</action>
<action name="order_ship">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_ship_mass</item>
<item name="label" xsi:type="string" translate="true">Ship (Email)</item>
<item name="url" xsi:type="url" path="ordermass/order/massShip"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Ship (Email)</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create shipment for selected items?</item>
</item>
</item>
</argument>
</action>
</massaction>
</listingToolbar>
</listing>
After that Add routes in your module
Path: appcodeVendorModuleetcadminhtmlroutes.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="ordermass" frontName="ordermass">
<module name="Vendor_Module" />
</route>
</router>
</config>
For Invoice Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassInvoice.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassInvoice extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
/**
* @var MagentoSalesModelServiceInvoiceService
*/
protected $_invoiceService;
/**
* @var MagentoFrameworkDBTransaction
*/
protected $_transaction;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoSalesModelServiceInvoiceService $invoiceService,
MagentoFrameworkDBTransaction $transaction,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
$this->_invoiceService = $invoiceService;
$this->_transaction = $transaction;
protected function massAction(AbstractCollection $collection)
$countInvoiceOrder = 0; $NonInvoiceOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canInvoice())
// Create invoice for this order
$invoice = $this->_objectManager->create('MagentoSalesModelServiceInvoiceService')->prepareInvoice($loadedOrder);
//$invoice->getOrder()->setIsInProcess(true);
$invoice->setShippingAmount($loadedOrder->getShippingAmount());
$invoice->setBaseShippingAmount($loadedOrder->getBaseShippingAmount());
$invoice->setTaxAmount($loadedOrder->getTaxAmount());
$invoice->setBaseTaxAmount($loadedOrder->getBaseTaxAmount());
$invoice->setSubtotal($loadedOrder->getSubtotal());
$invoice->setBaseSubtotal($loadedOrder->getBaseSubtotal());
$invoice->setGrandTotal($loadedOrder->getGrandTotal());
$invoice->setBaseGrandTotal($loadedOrder->getBaseGrandTotal());
// Register as invoice item
$invoice->setRequestedCaptureCase(MagentoSalesModelOrderInvoice::CAPTURE_OFFLINE);
$invoice->register();
// Save the invoice to the order
$transaction = $this->_objectManager->create('MagentoFrameworkDBTransaction')
->addObject($invoice)
->addObject($invoice->getOrder());
$transaction->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about invoice #%1. '.$appendusername, $invoice->getId())
)->setIsCustomerNotified(false)->save();
if ($loadedOrder->canShip())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus(MagentoSalesModelOrder::STATE_PROCESSING);
$loadedOrder->addStatusToHistory($loadedOrder->getStatus(), 'Order status set to processing using Mass Invoice action '.$appendusername);
$loadedOrder->save();
$countInvoiceOrder++;
else
if (empty($NonInvoiceOrdernuumbers))
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonInvoiceOrder = $collection->count() - $countInvoiceOrder;
if ($countNonInvoiceOrder && $countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
elseif ($countNonInvoiceOrder)
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
if ($countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
For Shipment Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassShip.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassShip extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
protected function massAction(AbstractCollection $collection)
$countShipOrder = 0; $NonShipOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canShip())
$convertOrder = $this->_objectManager->create('MagentoSalesModelConvertOrder');
$shipment = $convertOrder->toShipment($loadedOrder);
// Loop through order items
foreach ($order->getAllItems() AS $orderItem)
// Register shipment
$shipment->register();
$shipment->getOrder()->setIsInProcess(true);
try
// Save created shipment and order
$shipment->save();
$shipment->getOrder()->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about shipment #%1. '.$appendusername, $shipment->getId())
)->setIsCustomerNotified(false)->save();
$itemsCheck = $loadedOrder->getItemsCollection()->addAttributeToSelect('*')->load();
foreach ($itemsCheck as $item)
if (! $item->getQtyToShip()
// Send email
$this->_objectManager->create('MagentoShippingModelShipmentNotifier')
->notify($shipment);
$shipment->save();
catch (Exception $e)
$this->messageManager->addError(__($e->getMessage()));
if ($loadedOrder->canInvoice())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus('shipped');
$loadedOrder->addStatusToHistory('shipped', 'Order status set to shipped using Mass Ship action. '.$appendusername);
$loadedOrder->save();
$countShipOrder++;
else
if (empty($NonShipOrdernuumbers))
$NonShipOrdernuumbers = $NonShipOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonShipOrdernuumbers = $NonShipOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonShipOrder = $collection->count() - $countShipOrder;
if ($countNonShipOrder && $countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
elseif ($countNonShipOrder)
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
if ($countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
This is tested code, I hope this will help
1
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
1
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
add a comment |
I recently worked on this feature both (Invoice and Shipment). First you have to add Uicomponent
in your module
Path: appcodeVendorModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<listingToolbar name="listing_top">
<massaction name="listing_massaction">
<action name="order_invoice">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass</item>
<item name="label" xsi:type="string" translate="true">Invoice</item>
<item name="url" xsi:type="url" path="ordermass/order/massInvoice"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Invoice</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create invoice for selected items?</item>
</item>
</item>
</argument>
</action>
<action name="order_ship">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_ship_mass</item>
<item name="label" xsi:type="string" translate="true">Ship (Email)</item>
<item name="url" xsi:type="url" path="ordermass/order/massShip"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Ship (Email)</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create shipment for selected items?</item>
</item>
</item>
</argument>
</action>
</massaction>
</listingToolbar>
</listing>
After that Add routes in your module
Path: appcodeVendorModuleetcadminhtmlroutes.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="ordermass" frontName="ordermass">
<module name="Vendor_Module" />
</route>
</router>
</config>
For Invoice Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassInvoice.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassInvoice extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
/**
* @var MagentoSalesModelServiceInvoiceService
*/
protected $_invoiceService;
/**
* @var MagentoFrameworkDBTransaction
*/
protected $_transaction;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoSalesModelServiceInvoiceService $invoiceService,
MagentoFrameworkDBTransaction $transaction,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
$this->_invoiceService = $invoiceService;
$this->_transaction = $transaction;
protected function massAction(AbstractCollection $collection)
$countInvoiceOrder = 0; $NonInvoiceOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canInvoice())
// Create invoice for this order
$invoice = $this->_objectManager->create('MagentoSalesModelServiceInvoiceService')->prepareInvoice($loadedOrder);
//$invoice->getOrder()->setIsInProcess(true);
$invoice->setShippingAmount($loadedOrder->getShippingAmount());
$invoice->setBaseShippingAmount($loadedOrder->getBaseShippingAmount());
$invoice->setTaxAmount($loadedOrder->getTaxAmount());
$invoice->setBaseTaxAmount($loadedOrder->getBaseTaxAmount());
$invoice->setSubtotal($loadedOrder->getSubtotal());
$invoice->setBaseSubtotal($loadedOrder->getBaseSubtotal());
$invoice->setGrandTotal($loadedOrder->getGrandTotal());
$invoice->setBaseGrandTotal($loadedOrder->getBaseGrandTotal());
// Register as invoice item
$invoice->setRequestedCaptureCase(MagentoSalesModelOrderInvoice::CAPTURE_OFFLINE);
$invoice->register();
// Save the invoice to the order
$transaction = $this->_objectManager->create('MagentoFrameworkDBTransaction')
->addObject($invoice)
->addObject($invoice->getOrder());
$transaction->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about invoice #%1. '.$appendusername, $invoice->getId())
)->setIsCustomerNotified(false)->save();
if ($loadedOrder->canShip())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus(MagentoSalesModelOrder::STATE_PROCESSING);
$loadedOrder->addStatusToHistory($loadedOrder->getStatus(), 'Order status set to processing using Mass Invoice action '.$appendusername);
$loadedOrder->save();
$countInvoiceOrder++;
else
if (empty($NonInvoiceOrdernuumbers))
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonInvoiceOrder = $collection->count() - $countInvoiceOrder;
if ($countNonInvoiceOrder && $countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
elseif ($countNonInvoiceOrder)
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
if ($countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
For Shipment Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassShip.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassShip extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
protected function massAction(AbstractCollection $collection)
$countShipOrder = 0; $NonShipOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canShip())
$convertOrder = $this->_objectManager->create('MagentoSalesModelConvertOrder');
$shipment = $convertOrder->toShipment($loadedOrder);
// Loop through order items
foreach ($order->getAllItems() AS $orderItem)
// Register shipment
$shipment->register();
$shipment->getOrder()->setIsInProcess(true);
try
// Save created shipment and order
$shipment->save();
$shipment->getOrder()->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about shipment #%1. '.$appendusername, $shipment->getId())
)->setIsCustomerNotified(false)->save();
$itemsCheck = $loadedOrder->getItemsCollection()->addAttributeToSelect('*')->load();
foreach ($itemsCheck as $item)
if (! $item->getQtyToShip()
// Send email
$this->_objectManager->create('MagentoShippingModelShipmentNotifier')
->notify($shipment);
$shipment->save();
catch (Exception $e)
$this->messageManager->addError(__($e->getMessage()));
if ($loadedOrder->canInvoice())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus('shipped');
$loadedOrder->addStatusToHistory('shipped', 'Order status set to shipped using Mass Ship action. '.$appendusername);
$loadedOrder->save();
$countShipOrder++;
else
if (empty($NonShipOrdernuumbers))
$NonShipOrdernuumbers = $NonShipOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonShipOrdernuumbers = $NonShipOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonShipOrder = $collection->count() - $countShipOrder;
if ($countNonShipOrder && $countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
elseif ($countNonShipOrder)
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
if ($countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
This is tested code, I hope this will help
I recently worked on this feature both (Invoice and Shipment). First you have to add Uicomponent
in your module
Path: appcodeVendorModuleviewadminhtmlui_componentsales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<listingToolbar name="listing_top">
<massaction name="listing_massaction">
<action name="order_invoice">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass</item>
<item name="label" xsi:type="string" translate="true">Invoice</item>
<item name="url" xsi:type="url" path="ordermass/order/massInvoice"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Invoice</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create invoice for selected items?</item>
</item>
</item>
</argument>
</action>
<action name="order_ship">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_ship_mass</item>
<item name="label" xsi:type="string" translate="true">Ship (Email)</item>
<item name="url" xsi:type="url" path="ordermass/order/massShip"/>
<item name="confirm" xsi:type="array">
<item name="title" xsi:type="string" translate="true">Ship (Email)</item>
<item name="message" xsi:type="string" translate="true">Are you sure you want to create shipment for selected items?</item>
</item>
</item>
</argument>
</action>
</massaction>
</listingToolbar>
</listing>
After that Add routes in your module
Path: appcodeVendorModuleetcadminhtmlroutes.xml
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="admin">
<route id="ordermass" frontName="ordermass">
<module name="Vendor_Module" />
</route>
</router>
</config>
For Invoice Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassInvoice.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassInvoice extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
/**
* @var MagentoSalesModelServiceInvoiceService
*/
protected $_invoiceService;
/**
* @var MagentoFrameworkDBTransaction
*/
protected $_transaction;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoSalesModelServiceInvoiceService $invoiceService,
MagentoFrameworkDBTransaction $transaction,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
$this->_invoiceService = $invoiceService;
$this->_transaction = $transaction;
protected function massAction(AbstractCollection $collection)
$countInvoiceOrder = 0; $NonInvoiceOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canInvoice())
// Create invoice for this order
$invoice = $this->_objectManager->create('MagentoSalesModelServiceInvoiceService')->prepareInvoice($loadedOrder);
//$invoice->getOrder()->setIsInProcess(true);
$invoice->setShippingAmount($loadedOrder->getShippingAmount());
$invoice->setBaseShippingAmount($loadedOrder->getBaseShippingAmount());
$invoice->setTaxAmount($loadedOrder->getTaxAmount());
$invoice->setBaseTaxAmount($loadedOrder->getBaseTaxAmount());
$invoice->setSubtotal($loadedOrder->getSubtotal());
$invoice->setBaseSubtotal($loadedOrder->getBaseSubtotal());
$invoice->setGrandTotal($loadedOrder->getGrandTotal());
$invoice->setBaseGrandTotal($loadedOrder->getBaseGrandTotal());
// Register as invoice item
$invoice->setRequestedCaptureCase(MagentoSalesModelOrderInvoice::CAPTURE_OFFLINE);
$invoice->register();
// Save the invoice to the order
$transaction = $this->_objectManager->create('MagentoFrameworkDBTransaction')
->addObject($invoice)
->addObject($invoice->getOrder());
$transaction->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about invoice #%1. '.$appendusername, $invoice->getId())
)->setIsCustomerNotified(false)->save();
if ($loadedOrder->canShip())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus(MagentoSalesModelOrder::STATE_PROCESSING);
$loadedOrder->addStatusToHistory($loadedOrder->getStatus(), 'Order status set to processing using Mass Invoice action '.$appendusername);
$loadedOrder->save();
$countInvoiceOrder++;
else
if (empty($NonInvoiceOrdernuumbers))
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonInvoiceOrdernuumbers = $NonInvoiceOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonInvoiceOrder = $collection->count() - $countInvoiceOrder;
if ($countNonInvoiceOrder && $countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
elseif ($countNonInvoiceOrder)
$this->messageManager->addError(__('Invoice already created for %1 order(s).', $NonInvoiceOrdernuumbers));
if ($countInvoiceOrder)
$this->messageManager->addSuccess(__('%1 order(s) Invoice created successfully.', $countInvoiceOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
For Shipment Controller
Path: appcodeVendorModuleControllerAdminhtmlOrderMassShip.php
<?php
namespace VendorModuleControllerAdminhtmlOrder;
use MagentoFrameworkModelResourceModelDbCollectionAbstractCollection;
use MagentoBackendAppActionContext;
use MagentoUiComponentMassActionFilter;
use MagentoSalesModelResourceModelOrderCollectionFactory;
use MagentoSalesApiOrderManagementInterface;
class MassShip extends MagentoSalesControllerAdminhtmlOrderAbstractMassAction
protected $orderManagement;
public function __construct(
Context $context,
Filter $filter,
CollectionFactory $collectionFactory,
OrderManagementInterface $orderManagement,
MagentoBackendModelAuthSession $authSession
)
parent::__construct($context, $filter);
$this->authSession = $authSession;
$this->collectionFactory = $collectionFactory;
$this->orderManagement = $orderManagement;
protected function massAction(AbstractCollection $collection)
$countShipOrder = 0; $NonShipOrdernuumbers = '';
$model = $this->_objectManager->create('MagentoSalesModelOrder');
$username = $this->authSession->getUser()->getUsername();
$appendusername = "(".$username.")";
foreach ($collection->getItems() as $order)
if (!$order->getEntityId())
continue;
$loadedOrder = $model->load($order->getEntityId());
if($loadedOrder->canShip())
$convertOrder = $this->_objectManager->create('MagentoSalesModelConvertOrder');
$shipment = $convertOrder->toShipment($loadedOrder);
// Loop through order items
foreach ($order->getAllItems() AS $orderItem)
// Register shipment
$shipment->register();
$shipment->getOrder()->setIsInProcess(true);
try
// Save created shipment and order
$shipment->save();
$shipment->getOrder()->save();
//send notification code
$loadedOrder->addStatusHistoryComment(
__('Notified customer about shipment #%1. '.$appendusername, $shipment->getId())
)->setIsCustomerNotified(false)->save();
$itemsCheck = $loadedOrder->getItemsCollection()->addAttributeToSelect('*')->load();
foreach ($itemsCheck as $item)
if (! $item->getQtyToShip()
// Send email
$this->_objectManager->create('MagentoShippingModelShipmentNotifier')
->notify($shipment);
$shipment->save();
catch (Exception $e)
$this->messageManager->addError(__($e->getMessage()));
if ($loadedOrder->canInvoice())
$loadedOrder->setState(MagentoSalesModelOrder::STATE_PROCESSING, true);
$loadedOrder->setStatus('shipped');
$loadedOrder->addStatusToHistory('shipped', 'Order status set to shipped using Mass Ship action. '.$appendusername);
$loadedOrder->save();
$countShipOrder++;
else
if (empty($NonShipOrdernuumbers))
$NonShipOrdernuumbers = $NonShipOrdernuumbers.$loadedOrder->getIncrementId();
else
$NonShipOrdernuumbers = $NonShipOrdernuumbers.", ".$loadedOrder->getIncrementId();
$countNonShipOrder = $collection->count() - $countShipOrder;
if ($countNonShipOrder && $countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
elseif ($countNonShipOrder)
$this->messageManager->addError(__('Shipment already created for %1 order(s).', $NonShipOrdernuumbers));
if ($countShipOrder)
$this->messageManager->addSuccess(__('%1 order(s) Shipment created successfully.', $countShipOrder));
$resultRedirect = $this->resultRedirectFactory->create();
$resultRedirect->setPath($this->getComponentRefererUrl());
return $resultRedirect;
This is tested code, I hope this will help
answered Mar 15 at 11:30
Muhammad HashamMuhammad Hasham
3,80231647
3,80231647
1
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
1
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
add a comment |
1
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
1
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
1
1
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
+1 nice work around
– Prathap Gunasekaran
Mar 15 at 11:33
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
Thanks mate @PrathapGunasekaran. Glad you found it useful.
– Muhammad Hasham
Mar 15 at 11:35
1
1
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
Thanks Hasham. Really appreciate your effort on this
– Muhammad Bilal khan
Mar 15 at 11:42
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%2f266081%2fcreate-shipment-and-invoice-in-mass-action%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
1
Did you search for any tutorial?
– Shoaib Munir
Mar 15 at 11:24