How to merge multiple order and create new one order in magento 2?
0
try {
$store=$this->_storeManager->getStore();
$websiteId = $this->_storeManager->getStore()->getWebsiteId();
$customer=$this->customerFactory->create();
$customer->setWebsiteId($websiteId);
$customer->loadByEmail($firstOrderDetails->getCustomerEmail());// load customet by email address
if (!$customer->getEntityId()) {
//If not avilable then create this customer
$customer->setWebsiteId($websiteId)
->setStore($store)
->setFirstname($firstOrderDetails->getShippingAddress()->getData('firstname'))
->setLastname($firstOrderDetails->getShippingAddress()->getData('lastname'))
->setEmail($firstOrderDetails->getCustomerEmail())
->setPassword($firstOrderDetails->getCustomerEmail());
$customer->save();
}
//init the quote
$cart_id = $this->cartManagementInterface->createEmptyCart();
$cart = $this->cartRepositoryInterface->get($cart_id);
$cart->setStore($store);
// if you have allready buyer id then you can load customer directly
$customer= $this->customerRepository->getById($customer->getEntityId());
$cart->setCurrency();
$cart->assignCustomer($customer); //Assign quote to customer
//add items in quote
foreach ($orderAllItems as $item) {
$product = $this->_product->load($item['Product_id']);
$params = array('product' => $item['Product_id'], 'qty' => $item['Qty'],'form_key' => $this->_formkey->getFormKey());
$cart->addProduct(
$product,
$params
);
}
//Set Address to quote
$cart->getBillingAddress()->addData($firstOrderDetails->getBillingAddress()->getData());
$cart->getShippingAddress()->addData($firstOrderDetails->getShippingAddress()->getData());
// Collect Rates and Set Shipping & Payment Method
$shippingAddress=$cart->getShippingAddress();
$shippingAddress->setCollectShippingRates(true)
->collectShippingRates()
->setShippingMethod($firstOrderDetails->getShippingMethod()); //shipping method
$cart->setPaymentMethod($firstOrderDetails->getPayment()->getMethodInstance()->getCode()); //payment method
$cart->setInventoryProcessed(false); //not effetc inventory
// Set Sales Order Payment
$cart->getPayment()->importData(['method' => $firstOrderDetails->getPayment()->getMethodInstance()->getCode()]);
// Collect Totals & Save Quote
$cart->collectTotals()->save();
// Create Order From Quote
$cart = $this->cartRepositoryInterface->get($cart->getId());
$cart->setTotalsCollectedFlag(true)->collectTotals();
$cart->collectTotals()->save();
$order_id = $this->cartManagementInterface->placeOrder($cart->getId());
if (isset($order_id) && !empty($order_id)) {
$result["success"] = $order_id;
}
} catch (Exception $e) {
print_r($e->getMessage());
exit("123");
}
}
sales-order
New contributor
add a comment |
0
try {
$store=$this->_storeManager->getStore();
$websiteId = $this->_storeManager->getStore()->getWebsiteId();
$customer=$this->customerFactory->create();
$customer->setWebsiteId($websiteId);
$customer->loadByEmail($firstOrderDetails->getCustomerEmail());// load customet by email address
if (!$customer->getEntityId()) {
//If not avilable then create this customer
$customer->setWebsiteId($websiteId)
->setStore($store)
->setFirstname($firstOrderDetails->getShippingAddress()->getData('firstname'))
->setLastname($firstOrderDetails->getShippingAddress()->getData('lastname'))
->setEmail($firstOrderDetails->getCustomerEmail())
->setPassword($firstOrderDetails->getCustomerEmail());
$customer->save();
}
//init the quote
$cart_id = $this->cartManagementInterface->createEmptyCart();
$cart = $this->cartRepositoryInterface->get($cart_id);
$cart->setStore($store);
// if you have allready buyer id then you can load customer directly
$customer= $this->customerRepository->getById($customer->getEntityId());
$cart->setCurrency();
$cart->assignCustomer($customer); //Assign quote to customer
//add items in quote
foreach ($orderAllItems as $item) {
$product = $this->_product->load($item['Product_id']);
$params = array('product' => $item['Product_id'], 'qty' => $item['Qty'],'form_key' => $this->_formkey->getFormKey());
$cart->addProduct(
$product,
$params
);
}
//Set Address to quote
$cart->getBillingAddress()->addData($firstOrderDetails->getBillingAddress()->getData());
$cart->getShippingAddress()->addData($firstOrderDetails->getShippingAddress()->getData());
// Collect Rates and Set Shipping & Payment Method
$shippingAddress=$cart->getShippingAddress();
$shippingAddress->setCollectShippingRates(true)
->collectShippingRates()
->setShippingMethod($firstOrderDetails->getShippingMethod()); //shipping method
$cart->setPaymentMethod($firstOrderDetails->getPayment()->getMethodInstance()->getCode()); //payment method
$cart->setInventoryProcessed(false); //not effetc inventory
// Set Sales Order Payment
$cart->getPayment()->importData(['method' => $firstOrderDetails->getPayment()->getMethodInstance()->getCode()]);
// Collect Totals & Save Quote
$cart->collectTotals()->save();
// Create Order From Quote
$cart = $this->cartRepositoryInterface->get($cart->getId());
$cart->setTotalsCollectedFlag(true)->collectTotals();
$cart->collectTotals()->save();
$order_id = $this->cartManagementInterface->placeOrder($cart->getId());
if (isset($order_id) && !empty($order_id)) {
$result["success"] = $order_id;
}
} catch (Exception $e) {
print_r($e->getMessage());
exit("123");
}
}
sales-order
New contributor
add a comment |
0
0
0
try {
$store=$this->_storeManager->getStore();
$websiteId = $this->_storeManager->getStore()->getWebsiteId();
$customer=$this->customerFactory->create();
$customer->setWebsiteId($websiteId);
$customer->loadByEmail($firstOrderDetails->getCustomerEmail());// load customet by email address
if (!$customer->getEntityId()) {
//If not avilable then create this customer
$customer->setWebsiteId($websiteId)
->setStore($store)
->setFirstname($firstOrderDetails->getShippingAddress()->getData('firstname'))
->setLastname($firstOrderDetails->getShippingAddress()->getData('lastname'))
->setEmail($firstOrderDetails->getCustomerEmail())
->setPassword($firstOrderDetails->getCustomerEmail());
$customer->save();
}
//init the quote
$cart_id = $this->cartManagementInterface->createEmptyCart();
$cart = $this->cartRepositoryInterface->get($cart_id);
$cart->setStore($store);
// if you have allready buyer id then you can load customer directly
$customer= $this->customerRepository->getById($customer->getEntityId());
$cart->setCurrency();
$cart->assignCustomer($customer); //Assign quote to customer
//add items in quote
foreach ($orderAllItems as $item) {
$product = $this->_product->load($item['Product_id']);
$params = array('product' => $item['Product_id'], 'qty' => $item['Qty'],'form_key' => $this->_formkey->getFormKey());
$cart->addProduct(
$product,
$params
);
}
//Set Address to quote
$cart->getBillingAddress()->addData($firstOrderDetails->getBillingAddress()->getData());
$cart->getShippingAddress()->addData($firstOrderDetails->getShippingAddress()->getData());
// Collect Rates and Set Shipping & Payment Method
$shippingAddress=$cart->getShippingAddress();
$shippingAddress->setCollectShippingRates(true)
->collectShippingRates()
->setShippingMethod($firstOrderDetails->getShippingMethod()); //shipping method
$cart->setPaymentMethod($firstOrderDetails->getPayment()->getMethodInstance()->getCode()); //payment method
$cart->setInventoryProcessed(false); //not effetc inventory
// Set Sales Order Payment
$cart->getPayment()->importData(['method' => $firstOrderDetails->getPayment()->getMethodInstance()->getCode()]);
// Collect Totals & Save Quote
$cart->collectTotals()->save();
// Create Order From Quote
$cart = $this->cartRepositoryInterface->get($cart->getId());
$cart->setTotalsCollectedFlag(true)->collectTotals();
$cart->collectTotals()->save();
$order_id = $this->cartManagementInterface->placeOrder($cart->getId());
if (isset($order_id) && !empty($order_id)) {
$result["success"] = $order_id;
}
} catch (Exception $e) {
print_r($e->getMessage());
exit("123");
}
}
sales-order
New contributor
try {
$store=$this->_storeManager->getStore();
$websiteId = $this->_storeManager->getStore()->getWebsiteId();
$customer=$this->customerFactory->create();
$customer->setWebsiteId($websiteId);
$customer->loadByEmail($firstOrderDetails->getCustomerEmail());// load customet by email address
if (!$customer->getEntityId()) {
//If not avilable then create this customer
$customer->setWebsiteId($websiteId)
->setStore($store)
->setFirstname($firstOrderDetails->getShippingAddress()->getData('firstname'))
->setLastname($firstOrderDetails->getShippingAddress()->getData('lastname'))
->setEmail($firstOrderDetails->getCustomerEmail())
->setPassword($firstOrderDetails->getCustomerEmail());
$customer->save();
}
//init the quote
$cart_id = $this->cartManagementInterface->createEmptyCart();
$cart = $this->cartRepositoryInterface->get($cart_id);
$cart->setStore($store);
// if you have allready buyer id then you can load customer directly
$customer= $this->customerRepository->getById($customer->getEntityId());
$cart->setCurrency();
$cart->assignCustomer($customer); //Assign quote to customer
//add items in quote
foreach ($orderAllItems as $item) {
$product = $this->_product->load($item['Product_id']);
$params = array('product' => $item['Product_id'], 'qty' => $item['Qty'],'form_key' => $this->_formkey->getFormKey());
$cart->addProduct(
$product,
$params
);
}
//Set Address to quote
$cart->getBillingAddress()->addData($firstOrderDetails->getBillingAddress()->getData());
$cart->getShippingAddress()->addData($firstOrderDetails->getShippingAddress()->getData());
// Collect Rates and Set Shipping & Payment Method
$shippingAddress=$cart->getShippingAddress();
$shippingAddress->setCollectShippingRates(true)
->collectShippingRates()
->setShippingMethod($firstOrderDetails->getShippingMethod()); //shipping method
$cart->setPaymentMethod($firstOrderDetails->getPayment()->getMethodInstance()->getCode()); //payment method
$cart->setInventoryProcessed(false); //not effetc inventory
// Set Sales Order Payment
$cart->getPayment()->importData(['method' => $firstOrderDetails->getPayment()->getMethodInstance()->getCode()]);
// Collect Totals & Save Quote
$cart->collectTotals()->save();
// Create Order From Quote
$cart = $this->cartRepositoryInterface->get($cart->getId());
$cart->setTotalsCollectedFlag(true)->collectTotals();
$cart->collectTotals()->save();
$order_id = $this->cartManagementInterface->placeOrder($cart->getId());
if (isset($order_id) && !empty($order_id)) {
$result["success"] = $order_id;
}
} catch (Exception $e) {
print_r($e->getMessage());
exit("123");
}
}
sales-order
sales-order
New contributor
New contributor
New contributor
asked 2 mins ago
Milan ManiyaMilan Maniya
11
11
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
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
});
}
});
Milan Maniya is a new contributor. Be nice, and check out our Code of Conduct.
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f258277%2fhow-to-merge-multiple-order-and-create-new-one-order-in-magento-2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Milan Maniya is a new contributor. Be nice, and check out our Code of Conduct.
draft saved
draft discarded
Milan Maniya is a new contributor. Be nice, and check out our Code of Conduct.
Milan Maniya is a new contributor. Be nice, and check out our Code of Conduct.
Milan Maniya is a new contributor. Be nice, and check out our Code of Conduct.
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f258277%2fhow-to-merge-multiple-order-and-create-new-one-order-in-magento-2%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown