Hi there,
Processing in step #7………………………………………………………………………………………..
Status: fail
Message: Mage2SalesInvoicedAggregatedOrder: Order Status cannot be blank.<br/>Mage2SalesInvoicedAggregatedOrder: Order Status cannot be blank.
can you help me on this?
Thank you
1 answer
Hi there,
Message: Mage2SalesInvoicedAggregatedOrder:
That issue because your M1 database has some records which has bad data in table sales_invoiced_aggregated_order. Lets do steps below:
+ Run below SQL in your M1 database to delete the bad data records:
Delete From sales_invoiced_aggregated_order Where order_status = '' OR ordre_status IS NULL;
+ Once done, continue with data migration in the step #7 by run CLI command:
php -f bin/ubdatamigration run --step=7;
Regards,
Mall.