Changeset 2472818
- Timestamp:
- 02/11/2021 05:46:00 AM (5 years ago)
- Location:
- codistoconnect/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
connect.php (modified) (6 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codistoconnect/trunk/changelog.txt
r2459353 r2472818 1 1 *** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto *** 2 2 3 2021-01-18 3 2021-01-29 - version 1.3.56 4 * Update - shipping order line method update 5 * Fix - fix for products before save action 6 7 2021-01-18 - version 1.3.55 4 8 * Update - additional endpoints for Google integration 5 9 * Update - improvements to registration screen -
codistoconnect/trunk/connect.php
r2459353 r2472818 6 6 * Author: Codisto 7 7 * Author URI: https://codisto.com/ 8 * Version: 1.3.5 58 * Version: 1.3.56 9 9 * Text Domain: codisto-linq 10 10 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2 … … 15 15 * 16 16 * @package Codisto LINQ by Codisto 17 * @version 1.3.5 517 * @version 1.3.56 18 18 */ 19 19 … … 22 22 } 23 23 24 define( 'CODISTOCONNECT_VERSION', '1.3.5 5' );24 define( 'CODISTOCONNECT_VERSION', '1.3.56' ); 25 25 define( 'CODISTOCONNECT_RESELLERKEY', '' ); 26 26 … … 1723 1723 1724 1724 } else { 1725 1725 $method_id = (string)$orderline->productcode; 1726 if ( $method_id == null ) { 1727 $method_id = ''; 1728 } 1726 1729 $item_id = wc_add_order_item( 1727 1730 $order_id, … … 1732 1735 ); 1733 1736 1737 wc_add_order_item_meta($item_id, 'method_id', $method_id); 1734 1738 wc_add_order_item_meta( $item_id, 'cost', wc_format_decimal( (float)$orderline->defaultcurrencylinetotal) ); 1735 1739 wc_add_order_item_meta( $item_id, 'total_tax', wc_format_decimal( (float)$orderline->defaultcurrencylinetotalinctax - (float)$orderline->defaultcurrencylinetotal) ); … … 3205 3209 add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); 3206 3210 add_action( 'woocommerce_product_bulk_edit_save', array( $this, 'bulk_edit_save' ) ); 3207 add_action( 'woocommerce_before_product_object_save', array( $this, 'product_save' , 10, 2 ));3211 add_action( 'woocommerce_before_product_object_save', array( $this, 'product_save' ), 10, 2 ); 3208 3212 add_action( 'save_post', array( $this, 'product_save' ), 10, 2 ); 3209 3213 add_filter( 'woocommerce_product_data_tabs', array( $this, 'add_ebay_product_tab' ) ); -
codistoconnect/trunk/readme.txt
r2459353 r2472818 4 4 Requires at least: 4.0 5 5 Tested up to: 5.6.0 6 Stable tag: 1.3.5 56 Stable tag: 1.3.56 7 7 License: GPLv2 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 97 97 == Changelog == 98 98 99 = 1.3.54 - 18/01/2021 = 99 = 1.3.56 - 29/01/2021 = 100 * Update - shipping order line method update 101 * Fix - fix for products before save action 102 103 = 1.3.55 - 18/01/2021 = 100 104 * Update - additional endpoints for Google integration 101 105 * Update - improvements to registration screen
Note: See TracChangeset
for help on using the changeset viewer.