{"id":107071,"date":"2017-12-29T13:59:06","date_gmt":"2017-12-29T13:59:06","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=107071"},"modified":"2023-01-06T07:38:16","modified_gmt":"2023-01-06T07:38:16","slug":"add-product-existing-order-magento-2-magento-2-add-product-in-order","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/","title":{"rendered":"Add A Product In Existing Order Magento 2"},"content":{"rendered":"\n<p>Add A Product In Existing Order Magento 2 : In this post we will learn how to add new product in existing order.<br>so first of all we need to add the product in quote then in order.<br>please check below code.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n$this->_objectManager = \\Magento\\Framework\\App\\ObjectManager::getInstance();\n$order = $this->_objectManager\n        ->create(\n            'Magento\\Sales\\Model\\Order'\n        )->load($orderId);\n$quote = $this->_objectManager\n        ->create(\n            '\\Magento\\Quote\\Model\\Quote'\n        )->load($order->getQuoteId());\n$product = $this->_objectManager\n        ->create(\n            'Magento\\Catalog\\Model\\Product'\n        )->load($productId);\n        \n$this->_objectManager->create(\n            'Magento\\Quote\\Model\\Quote\\Item'\n        )->setProduct($product)\n        ->setQuote($quote)\n        ->setQty($productQty)\n        ->save();\n        $quoteToOrder = $this->_objectManager\n        ->create(\n            'Magento\\Quote\\Model\\Quote\\Item\\ToOrderItem'\n        );\n$quote->collectTotals();\n$quote->save();\n$items = $quote->getAllItems();\nforeach ($items as $quoteItem) {\n    $orderItem = $quoteToOrder->convert($quoteItem);\n    $origOrderItemNew = $order->getItemByQuoteItemId($quoteItem->getId());\n\n    if (!$orderItem) {\n        $origOrderItemNew->addData($orderItem->getData());\n        if ($quoteItem->getParentItem()) {\n            $orderItem->setParentItem(\n                $order->getItemByQuoteItemId($orderItem->getParentItem()->getId())\n            );\n        }\n        $order->addItem($orderItem);\n    }\n}\n$order->setSubtotal($quote->getSubtotal())\n    ->setBaseSubtotal($quote->getBaseSubtotal())\n    ->setGrandTotal($quote->getGrandTotal())\n    ->setBaseGrandTotal($quote->getBaseGrandTotal());\n$order->save();\n<\/pre>\n\n\n\n<p>Hope so it will help \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Add A Product In Existing Order Magento 2 : In this post we will learn how to add new product in existing order.so first of all we need to add the product in quote then in order.please check below code. &lt;?php $this->_objectManager = \\Magento\\Framework\\App\\ObjectManager::getInstance(); $order = $this->_objectManager ->create( &#8216;Magento\\Sales\\Model\\Order&#8217; )->load($orderId); $quote = $this->_objectManager ->create( &#8216;\\Magento\\Quote\\Model\\Quote&#8217; <a href=\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":92,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[5987,5989,5988],"class_list":["post-107071","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-add-a-product-in-existing-order-magento-2","tag-add-new-product-in-order-magento-2","tag-magento-2-add-item-in-existing-order"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Add A Product In Existing Order Magento 2<\/title>\n<meta name=\"description\" content=\"Add A Product In Existing Order Magento 2, magento 2 add item in existing order, add new product in order magento 2\" \/>\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\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Add A Product In Existing Order Magento 2\" \/>\n<meta property=\"og:description\" content=\"Add A Product In Existing Order Magento 2, magento 2 add item in existing order, add new product in order magento 2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\" \/>\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=\"2017-12-29T13:59:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-06T07:38:16+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=\"Narendra\" \/>\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=\"Narendra\" \/>\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\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\"},\"author\":{\"name\":\"Narendra\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a\"},\"headline\":\"Add A Product In Existing Order Magento 2\",\"datePublished\":\"2017-12-29T13:59:06+00:00\",\"dateModified\":\"2023-01-06T07:38:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\"},\"wordCount\":52,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"Add A Product In Existing Order Magento 2\",\"add new product in order magento 2\",\"magento 2 add item in existing order\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\",\"url\":\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\",\"name\":\"Add A Product In Existing Order Magento 2\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2017-12-29T13:59:06+00:00\",\"dateModified\":\"2023-01-06T07:38:16+00:00\",\"description\":\"Add A Product In Existing Order Magento 2, magento 2 add item in existing order, add new product in order magento 2\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Add A Product In Existing Order Magento 2\"}]},{\"@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\/3c4771ea9c127b5c6e7d1ff8b58ec70a\",\"name\":\"Narendra\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Narendra\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/narendra962\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Add A Product In Existing Order Magento 2","description":"Add A Product In Existing Order Magento 2, magento 2 add item in existing order, add new product in order magento 2","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\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/","og_locale":"en_US","og_type":"article","og_title":"Add A Product In Existing Order Magento 2","og_description":"Add A Product In Existing Order Magento 2, magento 2 add item in existing order, add new product in order magento 2","og_url":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-12-29T13:59:06+00:00","article_modified_time":"2023-01-06T07:38:16+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":"Narendra","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Narendra","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/"},"author":{"name":"Narendra","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/3c4771ea9c127b5c6e7d1ff8b58ec70a"},"headline":"Add A Product In Existing Order Magento 2","datePublished":"2017-12-29T13:59:06+00:00","dateModified":"2023-01-06T07:38:16+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/"},"wordCount":52,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["Add A Product In Existing Order Magento 2","add new product in order magento 2","magento 2 add item in existing order"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/","url":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/","name":"Add A Product In Existing Order Magento 2","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2017-12-29T13:59:06+00:00","dateModified":"2023-01-06T07:38:16+00:00","description":"Add A Product In Existing Order Magento 2, magento 2 add item in existing order, add new product in order magento 2","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/add-product-existing-order-magento-2-magento-2-add-product-in-order\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Add A Product In Existing Order Magento 2"}]},{"@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\/3c4771ea9c127b5c6e7d1ff8b58ec70a","name":"Narendra","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?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\/303d2e21e5f58ef4ebc1e13fa3c2ef91c7e27b33a9add5728a40545b6de1d269?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Narendra"},"url":"https:\/\/webkul.com\/blog\/author\/narendra962\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/107071","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\/92"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=107071"}],"version-history":[{"count":2,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/107071\/revisions"}],"predecessor-version":[{"id":363364,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/107071\/revisions\/363364"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=107071"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=107071"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=107071"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}