Version Description
- Compatibility with WC 3.0.3 ( fixed issue with order_date )
Download this release
Release Info
Developer | hikeforce |
Plugin | Order Export & Order Import for WooCommerce |
Version | 1.1.8 |
Comparing to | |
See all releases |
Code changes from version 1.1.7 to 1.1.8
includes/exporter/class-wf-orderimpexpcsv-exporter.php
CHANGED
@@ -268,7 +268,7 @@ class WF_OrderImpExpCsv_Exporter {
|
|
268 |
$order_data = array(
|
269 |
'order_id' => $order->get_id(),
|
270 |
'order_number' => $order->get_order_number(),
|
271 |
-
'order_date' => date('Y-m-d H:i:s'
|
272 |
'status' => $order->get_status(),
|
273 |
'shipping_total' => $order->get_total_shipping(),
|
274 |
'shipping_tax_total' => wc_format_decimal($order->get_shipping_tax(), 2),
|
268 |
$order_data = array(
|
269 |
'order_id' => $order->get_id(),
|
270 |
'order_number' => $order->get_order_number(),
|
271 |
+
'order_date' => date('Y-m-d H:i:s' , strtotime($order->get_date_created())),
|
272 |
'status' => $order->get_status(),
|
273 |
'shipping_total' => $order->get_total_shipping(),
|
274 |
'shipping_tax_total' => wc_format_decimal($order->get_shipping_tax(), 2),
|
includes/importer/class-wf-orderimpexpcsv-order-import.php
CHANGED
@@ -690,7 +690,7 @@ class WF_OrderImpExpCsv_Order_Import extends WP_Importer {
|
|
690 |
foreach ( $post['order_shipping'] as $order_shipping ) {
|
691 |
|
692 |
$shipping_order_item = array(
|
693 |
-
'order_item_name' => $order_shipping['title'],
|
694 |
'order_item_type' => 'shipping',
|
695 |
);
|
696 |
|
690 |
foreach ( $post['order_shipping'] as $order_shipping ) {
|
691 |
|
692 |
$shipping_order_item = array(
|
693 |
+
'order_item_name' => ($order_shipping['title']) ? $order_shipping['title'] : $order_shipping['method_id'],
|
694 |
'order_item_type' => 'shipping',
|
695 |
);
|
696 |
|
order-import-export.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://www.xadapter.com/product/order-import-export-plugin-for-wooco
|
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: HikeForce
|
8 |
Author URI: http://www.xadapter.com/vendor/hikeforce/
|
9 |
-
Version: 1.1.
|
10 |
Text Domain: wf_order_import_export
|
11 |
*/
|
12 |
|
6 |
Description: Export and Import Order detail including line items, From and To your WooCommerce Store.
|
7 |
Author: HikeForce
|
8 |
Author URI: http://www.xadapter.com/vendor/hikeforce/
|
9 |
+
Version: 1.1.8
|
10 |
Text Domain: wf_order_import_export
|
11 |
*/
|
12 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: woocommerce export orders, woocommerce import orders, woocommerce export import orders, export woocommerce orders with line item details,woocommerce export coupons, woocommerce import coupons, woocommerce export import coupons
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 1.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -75,6 +75,8 @@ Yes. You can import or export order line item details.
|
|
75 |
3. Exported sample order Screen
|
76 |
|
77 |
== Changelog ==
|
|
|
|
|
78 |
= 1.1.7 =
|
79 |
* Compatibility with WC 2.7
|
80 |
= 1.1.6 =
|
@@ -114,6 +116,8 @@ Yes. You can import or export order line item details.
|
|
114 |
* Export /Import WooCommerce Orders.
|
115 |
|
116 |
== Upgrade Notice ==
|
|
|
|
|
117 |
= 1.1.7 =
|
118 |
* Compatibility with WC 2.7
|
119 |
= 1.1.6 =
|
4 |
Tags: woocommerce export orders, woocommerce import orders, woocommerce export import orders, export woocommerce orders with line item details,woocommerce export coupons, woocommerce import coupons, woocommerce export import coupons
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 1.1.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
75 |
3. Exported sample order Screen
|
76 |
|
77 |
== Changelog ==
|
78 |
+
= 1.1.8 =
|
79 |
+
* Compatibility with WC 3.0.3 ( fixed issue with order_date )
|
80 |
= 1.1.7 =
|
81 |
* Compatibility with WC 2.7
|
82 |
= 1.1.6 =
|
116 |
* Export /Import WooCommerce Orders.
|
117 |
|
118 |
== Upgrade Notice ==
|
119 |
+
= 1.1.8 =
|
120 |
+
* Compatibility with WC 3.0.3 ( fixed issue with order_date )
|
121 |
= 1.1.7 =
|
122 |
* Compatibility with WC 2.7
|
123 |
= 1.1.6 =
|