I mapped sales_flat_order table of magento 1.9 to sales_order table of magento 2 and push the csv from mysqlworkbench. and orders was migrated in the database. The orders are even displaying in the frontend.
The products and customer data migration was done before this. Is there any problem in this migration... Anyone have gone through the same order migration process ?
-
Any reason why you don't use the official migration tool : devdocs.magento.com/guides/v2.0/migration/… ?Raphael at Digital Pianism– Raphael at Digital Pianism2016年09月05日 09:56:40 +00:00Commented Sep 5, 2016 at 9:56
-
1Because Magento Migration tool is for complete migration process. But I have already migrated customer data and now I only have to migrate the orders. Is it possible to migrate only the orders by magento migration tool ?sql_lover– sql_lover2016年09月05日 10:13:01 +00:00Commented Sep 5, 2016 at 10:13
-
can u please advise magento.stackexchange.com/questions/292904/…Nagaraju Kasa– Nagaraju Kasa2019年10月17日 03:59:35 +00:00Commented Oct 17, 2019 at 3:59
1 Answer 1
I think we should map some more tables:
Magento 1 || Magento 2
sales_flat_order sales_order
sales_flat_order_address sales_order_address
sales_flat_order_grid sales_order_grid
sales_flat_order_item sales_order_item
sales_flat_order_payment sales_order_payment
sales_flat_order_status_history sales_order_status_history
If we had the invoices and shipments, we need to map more tables.
Note: when we want to clear the order from Magento 2, we can use this module.
-
can u advise magento.stackexchange.com/questions/292904/…Nagaraju Kasa– Nagaraju Kasa2019年10月17日 03:59:18 +00:00Commented Oct 17, 2019 at 3:59