定制 dominicwatts/orderhistory 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

dominicwatts/orderhistory

最新稳定版本:1.0.2

Composer 安装命令:

composer require dominicwatts/orderhistory

包简介

Easily migrate magento 1 orders to magento 2 and show orders in self contained area in customer account. Offer reorder functionality where possible.

README 文档

README

phpcs

PHPCompatibility

PHPStan

Easily migrate magento 1 orders to magento 2 and show orders in self contained area in customer account. Offer reorder functionality where possible.

Install

Step 1 - On magento 1 store create archive orders tables from sales data

CREATE TABLE m1_sales_flat_order LIKE sales_flat_order; 
INSERT INTO m1_sales_flat_order SELECT * FROM sales_flat_order;

CREATE TABLE m1_sales_flat_order_address LIKE sales_flat_order_address; 
INSERT INTO m1_sales_flat_order_address SELECT * FROM sales_flat_order_address;

CREATE TABLE m1_sales_flat_order_item LIKE sales_flat_order_item; 
INSERT INTO m1_sales_flat_order_item SELECT * FROM sales_flat_order_item;

Included sample sql data in repo (./supplied/magento.sql) based on magento 1 sample data

Screenshot

Step 1.1 Find invalid column types

SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE DATA_TYPE ='enum';
SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE DATA_TYPE ='char';

Step 1.2 Convert invalid column types

ALTER TABLE `m1_sales_flat_order` CHANGE `column_name` `column_name` VARCHAR(255) NULL DEFAULT NULL;

Step 2 - Dump from Magento 1 and import the following tables into your Magento 2 database

m1_sales_flat_order
m1_sales_flat_order_address
m1_sales_flat_order_item

Use mysqldump or similar

Step 2.1 - Magento setup:upgrade error

undefined index : <index>

Check foreign keys on newly imported table. May need to delete.

SELECT * FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE REFERENCED_TABLE_NAME = <index>;

For example

SELECT * FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE WHERE REFERENCED_TABLE_NAME = 'core_store';

ALTER TABLE `m1_sales_flat_order` DROP FOREIGN KEY <fk_name>;

Step 3 - Install extension

composer require dominicwatts/orderhistory

php bin/magento setup:upgrade

php bin/magento setup:di:compile

Usage

Stores > Configuration > Xigen > Order History

Minor configuration required

  • Map magento 1 order status codes to their labels
    • This is for status label shown on Magento 2 frontend
  • Map Magento 2 Store ID against Magento 1 Store ID
    • This is to ensure correct orders are fetched in multisite scenario

Screenshot

Providing customer email matches logged in customer they will see Magento 1 orders in Previous Order section in their account area with reorder functionality if matching product is found.

My Account > My Previous Orders

Screenshot

Known issues

  • Will need to convert enum column type to varchar in m1_* tables as magento 2 does not support this column type

统计信息

  • 总下载量: 1.12k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2020-02-26