Advanced Order Export For WooCommerce - Version 3.2.1

Version Description

  • 2021-11-11 =
  • Fixed critical bug - option "Format numbers" broke XLS format
Download this release

Release Info

Developer algol.plus
Plugin Icon 128x128 Advanced Order Export For WooCommerce
Version 3.2.1
Comparing to
See all releases

Code changes from version 3.2.0 to 3.2.1

classes/formats/class-woe-formatter-xls.php CHANGED
@@ -318,7 +318,7 @@ class WOE_Formatter_Xls extends WOE_Formatter_Plain_Format {
318
  if ( $this->string_format_force OR $column->getMetaItem("string") === true ) {
319
  $numberFormat->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_TEXT);
320
  } elseif ( $this->format_number_fields_original AND $column->getMetaItem("money") ) { // MONEY
321
- $$numberFormat->setFormatCode( $this->money_format );
322
  } elseif ( $this->format_number_fields_original AND $column->getMetaItem("number") ) { // NUMBER
323
  $numberFormat->setFormatCode( $this->number_format );
324
  } elseif ( $column->getMetaItem("date") ) {// DATE!
318
  if ( $this->string_format_force OR $column->getMetaItem("string") === true ) {
319
  $numberFormat->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_TEXT);
320
  } elseif ( $this->format_number_fields_original AND $column->getMetaItem("money") ) { // MONEY
321
+ $numberFormat->setFormatCode( $this->money_format );
322
  } elseif ( $this->format_number_fields_original AND $column->getMetaItem("number") ) { // NUMBER
323
  $numberFormat->setFormatCode( $this->number_format );
324
  } elseif ( $column->getMetaItem("date") ) {// DATE!
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: woocommerce,export,order,xls,csv,xml,woo export lite,export orders,orders
5
  Requires PHP: 5.4.0
6
  Requires at least: 4.7
7
  Tested up to: 5.8
8
- Stable tag: 3.2.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -117,6 +117,9 @@ Yes, you can email a request to aprokaev@gmail.com. We intensively develop this
117
 
118
  == Changelog ==
119
 
 
 
 
120
  = 3.2.0 - 2021-11-09 =
121
  * Speeded up XLS export
122
  * Added option "Remove emojis" (XLS format)
5
  Requires PHP: 5.4.0
6
  Requires at least: 4.7
7
  Tested up to: 5.8
8
+ Stable tag: 3.2.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
117
 
118
  == Changelog ==
119
 
120
+ = 3.2.1 - 2021-11-11 =
121
+ * Fixed critical bug - option "Format numbers" broke XLS format
122
+
123
  = 3.2.0 - 2021-11-09 =
124
  * Speeded up XLS export
125
  * Added option "Remove emojis" (XLS format)
woo-order-export-lite.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Export orders from WooCommerce with ease (Excel/CSV/XML/JSON supported)
6
  * Author: AlgolPlus
7
  * Author URI: https://algolplus.com/
8
- * Version: 3.2.0
9
  * Text Domain: woo-order-export-lite
10
  * Domain Path: /i18n/languages/
11
  * WC requires at least: 3.0.0
@@ -40,7 +40,7 @@ if ( class_exists( 'WC_Order_Export_Admin' ) ) {
40
  }
41
 
42
  if ( ! defined( 'WOE_VERSION' ) ) {
43
- define( 'WOE_VERSION', '3.2.0' );
44
  define( 'WOE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
45
  define( 'WOE_PLUGIN_BASEPATH', dirname( __FILE__ ) );
46
  }
5
  * Description: Export orders from WooCommerce with ease (Excel/CSV/XML/JSON supported)
6
  * Author: AlgolPlus
7
  * Author URI: https://algolplus.com/
8
+ * Version: 3.2.1
9
  * Text Domain: woo-order-export-lite
10
  * Domain Path: /i18n/languages/
11
  * WC requires at least: 3.0.0
40
  }
41
 
42
  if ( ! defined( 'WOE_VERSION' ) ) {
43
+ define( 'WOE_VERSION', '3.2.1' );
44
  define( 'WOE_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
45
  define( 'WOE_PLUGIN_BASEPATH', dirname( __FILE__ ) );
46
  }