Plugin Directory

Changeset 3276415


Ignore:
Timestamp:
04/18/2025 08:22:29 AM (11 months ago)
Author:
nikelschubert
Message:

FIX: variation SKU is now exported, instead of main product SKU

Location:
order-export-to-lexware-opentrans-for-woocommerce
Files:
37 added
3 edited

Legend:

Unmodified
Added
Removed
  • order-export-to-lexware-opentrans-for-woocommerce/trunk/README.txt

    r3268452 r3276415  
    66Requires PHP: 7.4
    77License: GPLv3 with Additional Terms
    8 Stable tag: 1.6.2
     8Stable tag: 1.6.3
    99
    1010Exports WooCommerce orders to Lexware. This plugin exports the orders to an openTRANS XML file to be used in Lexware or other suitable systems.
     
    2121- Admin UI is available in german and english.
    2222
    23 **additonally with Premium Addon**
     23**additionally with Premium Add-on**
    2424- openTrans v2.1
    2525- automated order export with E-mail
     
    4141
    4242== Changelog ==
     43
     44= 1.6.3 =
     45
     46* FIX: variation SKU is now exported, instead of main product SKU
    4347
    4448= 1.6.2 =
  • order-export-to-lexware-opentrans-for-woocommerce/trunk/includes/class-download-orders-nscwto.php

    r3268442 r3276415  
    395395        $data['items'] = array();
    396396        foreach ($order->get_items() as $item_id => $item) {
    397             $product_id = $item->get_product_id();
    398             $product = wc_get_product($product_id);
     397            $product = $item->get_product();
    399398            $sku = $product ? $product->get_sku() : '';
    400399
  • order-export-to-lexware-opentrans-for-woocommerce/trunk/order-to-lexware-nscwto.php

    r3268442 r3276415  
    77 * Plugin Name:       Order Export to Lexware (openTrans) for WooCommerce
    88 * Description:       Export WooCommerce orders to an openTRANS xml file
    9  * Version:           1.6.2
     9 * Version:           1.6.3
    1010 * Author:            Beautiful WP | made in Germany
    1111 * Author URI:        https://beautiful-wp.com/
     
    3434GNU General Public License for more details.
    3535
    36 A full copy of the GPLv3 license is available at https://www.gnu.org/licenses/gpl-3.0.en.html.
     36A full copy of the GPLv3 license is available at https://beautiful-wp.com/license-for-published-plugins.txt.
    3737
    3838*/
     
    4242}
    4343
    44 define('NSC_WTO_VERSION', '1.6.2');
     44define('NSC_WTO_VERSION', '1.6.3');
    4545define("NSC_WTO_PLUGIN_DIR", dirname(__FILE__));
    4646define("NSC_WTO_PLUGIN_URL", plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.