Changeset 3276415
- Timestamp:
- 04/18/2025 08:22:29 AM (11 months ago)
- Location:
- order-export-to-lexware-opentrans-for-woocommerce
- Files:
-
- 37 added
- 3 edited
-
tags/1.6.3 (added)
-
tags/1.6.3/LICENSE.txt (added)
-
tags/1.6.3/README.txt (added)
-
tags/1.6.3/admin (added)
-
tags/1.6.3/admin/class-admin-nscwto.php (added)
-
tags/1.6.3/admin/css (added)
-
tags/1.6.3/admin/css/bootstrap.min.css (added)
-
tags/1.6.3/admin/css/woo-order-to-lexware-nscwto-admin.css (added)
-
tags/1.6.3/admin/index.php (added)
-
tags/1.6.3/admin/js (added)
-
tags/1.6.3/admin/js/admin.nscwto-woo-export.min.js (added)
-
tags/1.6.3/admin/js/bootstrap.bundle.min.js (added)
-
tags/1.6.3/admin/partials (added)
-
tags/1.6.3/admin/partials/display-nscwto.php (added)
-
tags/1.6.3/admin/tpl (added)
-
tags/1.6.3/includes (added)
-
tags/1.6.3/includes/class-activator-nscwto.php (added)
-
tags/1.6.3/includes/class-admin-error-nscwto.php (added)
-
tags/1.6.3/includes/class-deactivator-nscwto.php (added)
-
tags/1.6.3/includes/class-download-orders-nscwto.php (added)
-
tags/1.6.3/includes/class-html-formfields-nscwto.php (added)
-
tags/1.6.3/includes/class-i18n-nscwto.php (added)
-
tags/1.6.3/includes/class-loader-nscwto.php (added)
-
tags/1.6.3/includes/class-plugin-configs-nscwto.php (added)
-
tags/1.6.3/includes/class-validation-nscwto.php (added)
-
tags/1.6.3/includes/class-woo-order-to-lexware-nscwto.php (added)
-
tags/1.6.3/includes/index.php (added)
-
tags/1.6.3/index.php (added)
-
tags/1.6.3/languages (added)
-
tags/1.6.3/languages/order-to-lexware-nscwto-de_DE.mo (added)
-
tags/1.6.3/languages/order-to-lexware-nscwto-de_DE.po (added)
-
tags/1.6.3/languages/order-to-lexware-nscwto-de_DE_formal.mo (added)
-
tags/1.6.3/languages/order-to-lexware-nscwto-de_DE_formal.po (added)
-
tags/1.6.3/languages/order-to-lexware-nscwto.pot (added)
-
tags/1.6.3/order-to-lexware-nscwto.php (added)
-
tags/1.6.3/plugin-configs.json (added)
-
tags/1.6.3/uninstall.php (added)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/includes/class-download-orders-nscwto.php (modified) (1 diff)
-
trunk/order-to-lexware-nscwto.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-export-to-lexware-opentrans-for-woocommerce/trunk/README.txt
r3268452 r3276415 6 6 Requires PHP: 7.4 7 7 License: GPLv3 with Additional Terms 8 Stable tag: 1.6. 28 Stable tag: 1.6.3 9 9 10 10 Exports WooCommerce orders to Lexware. This plugin exports the orders to an openTRANS XML file to be used in Lexware or other suitable systems. … … 21 21 - Admin UI is available in german and english. 22 22 23 **addit onally with Premium Addon**23 **additionally with Premium Add-on** 24 24 - openTrans v2.1 25 25 - automated order export with E-mail … … 41 41 42 42 == Changelog == 43 44 = 1.6.3 = 45 46 * FIX: variation SKU is now exported, instead of main product SKU 43 47 44 48 = 1.6.2 = -
order-export-to-lexware-opentrans-for-woocommerce/trunk/includes/class-download-orders-nscwto.php
r3268442 r3276415 395 395 $data['items'] = array(); 396 396 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(); 399 398 $sku = $product ? $product->get_sku() : ''; 400 399 -
order-export-to-lexware-opentrans-for-woocommerce/trunk/order-to-lexware-nscwto.php
r3268442 r3276415 7 7 * Plugin Name: Order Export to Lexware (openTrans) for WooCommerce 8 8 * Description: Export WooCommerce orders to an openTRANS xml file 9 * Version: 1.6. 29 * Version: 1.6.3 10 10 * Author: Beautiful WP | made in Germany 11 11 * Author URI: https://beautiful-wp.com/ … … 34 34 GNU General Public License for more details. 35 35 36 A full copy of the GPLv3 license is available at https:// www.gnu.org/licenses/gpl-3.0.en.html.36 A full copy of the GPLv3 license is available at https://beautiful-wp.com/license-for-published-plugins.txt. 37 37 38 38 */ … … 42 42 } 43 43 44 define('NSC_WTO_VERSION', '1.6. 2');44 define('NSC_WTO_VERSION', '1.6.3'); 45 45 define("NSC_WTO_PLUGIN_DIR", dirname(__FILE__)); 46 46 define("NSC_WTO_PLUGIN_URL", plugin_dir_url(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.