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;








3















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.










share|improve this question



















  • 1





    Did you search for any tutorial?

    – Shoaib Munir
    Mar 15 at 11:24

















3















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.










share|improve this question



















  • 1





    Did you search for any tutorial?

    – Shoaib Munir
    Mar 15 at 11:24













3












3








3


1






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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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










1 Answer
1






active

oldest

votes


















3














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






share|improve this answer


















  • 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











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%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









3














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






share|improve this answer


















  • 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















3














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






share|improve this answer


















  • 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













3












3








3







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






share|improve this answer













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







share|improve this answer












share|improve this answer



share|improve this answer










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












  • 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

















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%2f266081%2fcreate-shipment-and-invoice-in-mass-action%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

Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form