{"id":134316,"date":"2018-07-19T10:10:23","date_gmt":"2018-07-19T10:10:23","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=134316"},"modified":"2024-02-22T12:08:14","modified_gmt":"2024-02-22T12:08:14","slug":"how-to-programmatically-create-shipment-in-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/","title":{"rendered":"How to programmatically create shipment in magento2"},"content":{"rendered":"\n<p>Here we learn in Magento2- how to create a shipment of an order programmatically.<br>If you want to create a custom quote and order programmatically then you can check this blog\u00a0<a href=\"https:\/\/webkul.com\/blog\/create-quote-and-order-programmatically-in-magento2\/\" target=\"_blank\" rel=\"noopener noreferrer\">Create Quote &amp; Order Programmatically<\/a><\/p>\n\n\n\n<p><strong>Create Shipment of an order-<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\n \nnamespace Webkul\\Test\\Controller\\Order;\n\nuse Magento\\Framework\\App\\Action\\Context;\n \nclass CreateShipment extends \\Magento\\Framework\\App\\Action\\Action\n{\n    \/**\n     * @var \\Magento\\Sales\\Api\\OrderRepositoryInterface\n     *\/\n    protected $_orderRepository;\n\n    \/**\n     * @var \\Magento\\Sales\\Model\\Convert\\Order\n     *\/\n    protected $_convertOrder;\n\n    \/**\n     * @var \\Magento\\Shipping\\Model\\ShipmentNotifier\n     *\/\n    protected $_shipmentNotifier;\n\n    \/**\n     * @param Context                                     $context\n     * @param \\Magento\\Sales\\Api\\OrderRepositoryInterface $orderRepository\n     * @param \\Magento\\Sales\\Model\\Convert\\Order          $convertOrder\n     * @param \\Magento\\Shipping\\Model\\ShipmentNotifier    $shipmentNotifier\n     *\/\n    public function __construct(\n        Context $context,\n        \\Magento\\Sales\\Api\\OrderRepositoryInterface $orderRepository,\n        \\Magento\\Sales\\Model\\Convert\\Order $convertOrder,\n        \\Magento\\Shipping\\Model\\ShipmentNotifier $shipmentNotifier\n    ) {\n        $this-&gt;_orderRepository = $orderRepository;\n        $this-&gt;_convertOrder = $convertOrder;\n        $this-&gt;_shipmentNotifier = $shipmentNotifier;\n        parent::__construct($context);\n    }\n\n    \/**\n     * Test Order Create Shipment Controller\n     *\/\n    public function execute()\n    {\n        $orderId = 1;\n        $order = $this-&gt;_orderRepository-&gt;get($orderId);\n\n        \/\/ to check order can ship or not\n        if (!$order-&gt;canShip()) {\n            throw new \\Magento\\Framework\\Exception\\LocalizedException(\n                __(&quot;You can&#039;t create the Shipment of this order.&quot;)\n            );\n        }\n\n        $orderShipment = $this-&gt;_convertOrder-&gt;toShipment($order);\n\n        foreach ($order-&gt;getAllItems() as $orderItem) {\n            \/\/ Check virtual item and item Quantity\n            if (!$orderItem-&gt;getQtyToShip() || $orderItem-&gt;getIsVirtual()) {\n                continue;\n            }\n\n            $qty = $orderItem-&gt;getQtyToShip();\n            $shipmentItem = $this-&gt;_convertOrder-&gt;itemToShipmentItem($orderItem)-&gt;setQty($qty);\n\n            $orderShipment-&gt;addItem($shipmentItem);\n        }\n\n        $orderShipment-&gt;register();\n        $orderShipment-&gt;getOrder()-&gt;setIsInProcess(true);\n        try {\n            \/\/ Save created Order Shipment\n            $orderShipment-&gt;save();\n            $orderShipment-&gt;getOrder()-&gt;save();\n\n            \/\/ Send Shipment Email\n            $this-&gt;_shipmentNotifier-&gt;notify($orderShipment);\n            $orderShipment-&gt;save();\n        } catch (\\Exception $e) {\n            throw new \\Magento\\Framework\\Exception\\LocalizedException(\n                __($e-&gt;getMessage())\n            );\n        }\n    }\n}<\/pre>\n\n\n\n<p>In this way, you can create a shipment for a particular complete order.<br>If you want to create the invoice of an order in Magento 2, you can check the wonderful blog from here <a href=\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-invoice-in-magento2\/\" target=\"_blank\" rel=\"noopener noreferrer\">Create Invoice Programmatically<\/a><\/p>\n\n\n\n<p>Hope it will help you. Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Here we learn in Magento2- how to create a shipment of an order programmatically.If you want to create a custom quote and order programmatically then you can check this blog\u00a0Create Quote &amp; Order Programmatically Create Shipment of an order- In this way, you can create a shipment for a particular complete order.If you want to <a href=\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":171,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[7148,7149,2070,1198],"class_list":["post-134316","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-create-order-shipment","tag-custom-shipment","tag-magento2","tag-shipment"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to programmatically create shipment in magento2 - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to programmatically create shipment in magento2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Here we learn in Magento2- how to create a shipment of an order programmatically.If you want to create a custom quote and order programmatically then you can check this blog\u00a0Create Quote &amp; Order Programmatically Create Shipment of an order- In this way, you can create a shipment for a particular complete order.If you want to [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-19T10:10:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-22T12:08:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Anuj Gupta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anuj Gupta\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\"},\"author\":{\"name\":\"Anuj Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4\"},\"headline\":\"How to programmatically create shipment in magento2\",\"datePublished\":\"2018-07-19T10:10:23+00:00\",\"dateModified\":\"2024-02-22T12:08:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\"},\"wordCount\":92,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"create order shipment\",\"custom shipment\",\"Magento2\",\"shipment\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\",\"name\":\"How to programmatically create shipment in magento2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2018-07-19T10:10:23+00:00\",\"dateModified\":\"2024-02-22T12:08:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to programmatically create shipment in magento2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4\",\"name\":\"Anuj Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Anuj Gupta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/anuj-gupta701\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to programmatically create shipment in magento2 - Webkul Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/","og_locale":"en_US","og_type":"article","og_title":"How to programmatically create shipment in magento2 - Webkul Blog","og_description":"Here we learn in Magento2- how to create a shipment of an order programmatically.If you want to create a custom quote and order programmatically then you can check this blog\u00a0Create Quote &amp; Order Programmatically Create Shipment of an order- In this way, you can create a shipment for a particular complete order.If you want to [...]","og_url":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-07-19T10:10:23+00:00","article_modified_time":"2024-02-22T12:08:14+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Anuj Gupta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Anuj Gupta","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/"},"author":{"name":"Anuj Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4"},"headline":"How to programmatically create shipment in magento2","datePublished":"2018-07-19T10:10:23+00:00","dateModified":"2024-02-22T12:08:14+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/"},"wordCount":92,"commentCount":1,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["create order shipment","custom shipment","Magento2","shipment"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/","url":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/","name":"How to programmatically create shipment in magento2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2018-07-19T10:10:23+00:00","dateModified":"2024-02-22T12:08:14+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-programmatically-create-shipment-in-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to programmatically create shipment in magento2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/8b6a9038345794233c3cf41b15a330c4","name":"Anuj Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a46d5e8da91ff0fecc16beee97bfb7b3a8ed158c64c69f50ddc3c1ce7d532e97?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Anuj Gupta"},"url":"https:\/\/webkul.com\/blog\/author\/anuj-gupta701\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/171"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=134316"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134316\/revisions"}],"predecessor-version":[{"id":423853,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/134316\/revisions\/423853"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=134316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=134316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=134316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}