Changeset 3149953
- Timestamp:
- 09/11/2024 10:21:49 AM (19 months ago)
- Location:
- posti-warehouse
- Files:
-
- 10 edited
- 1 copied
-
tags/3.0.1 (copied) (copied from posti-warehouse/trunk)
-
tags/3.0.1/README.md (modified) (1 diff)
-
tags/3.0.1/classes/class-api.php (modified) (1 diff)
-
tags/3.0.1/classes/class-order.php (modified) (2 diffs)
-
tags/3.0.1/posti-warehouse.php (modified) (1 diff)
-
tags/3.0.1/readme.txt (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/classes/class-api.php (modified) (1 diff)
-
trunk/classes/class-order.php (modified) (2 diffs)
-
trunk/posti-warehouse.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
posti-warehouse/tags/3.0.1/README.md
r3139663 r3149953 98 98 99 99 ## Version history 100 - 3.0.1: 101 - Bug fix: Order filter "meta_query" was not being applied during order status sync when HPOS is disabled. 100 102 - 3.0.0: 101 103 - Added HPOS support -
posti-warehouse/tags/3.0.1/classes/class-api.php
r3139663 r3149953 14 14 private $last_status = false; 15 15 private $token_option = 'posti_wh_api_auth'; 16 private $user_agent = 'woo-wh-client/3.0. 0';16 private $user_agent = 'woo-wh-client/3.0.1'; 17 17 18 18 public function __construct(Posti_Warehouse_Logger $logger, array &$options) { -
posti-warehouse/tags/3.0.1/classes/class-order.php
r3139663 r3149953 43 43 add_action('woocommerce_email_order_meta', array($this, 'addTrackingToEmail'), 10, 4); 44 44 } 45 46 45 } 47 46 … … 305 304 'post_status' => 'any', 306 305 'numberposts' => -1, 307 'meta_query' => array( 308 'relation' => 'AND', 309 array( 310 'key' => '_posti_id', 311 'value' => $order_ids, 312 'compare' => 'IN' 313 ) 314 ) 306 'meta_key' => '_posti_id', 307 'meta_value' => $order_ids, 308 'meta_compare' => 'IN' 315 309 ); 316 310 $posts = wc_get_orders($posts_query); -
posti-warehouse/tags/3.0.1/posti-warehouse.php
r3139663 r3149953 3 3 /** 4 4 * Plugin Name: Posti Warehouse 5 * Version: 3.0. 05 * Version: 3.0.1 6 6 * Description: Provides integration to Posti warehouse and dropshipping services. 7 7 * Author: Posti -
posti-warehouse/tags/3.0.1/readme.txt
r3139663 r3149953 5 5 Tested up to: 6.6 6 6 Requires PHP: 7.1 7 Stable tag: 3.0. 07 Stable tag: 3.0.1 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
posti-warehouse/trunk/README.md
r3139663 r3149953 98 98 99 99 ## Version history 100 - 3.0.1: 101 - Bug fix: Order filter "meta_query" was not being applied during order status sync when HPOS is disabled. 100 102 - 3.0.0: 101 103 - Added HPOS support -
posti-warehouse/trunk/classes/class-api.php
r3139663 r3149953 14 14 private $last_status = false; 15 15 private $token_option = 'posti_wh_api_auth'; 16 private $user_agent = 'woo-wh-client/3.0. 0';16 private $user_agent = 'woo-wh-client/3.0.1'; 17 17 18 18 public function __construct(Posti_Warehouse_Logger $logger, array &$options) { -
posti-warehouse/trunk/classes/class-order.php
r3139663 r3149953 43 43 add_action('woocommerce_email_order_meta', array($this, 'addTrackingToEmail'), 10, 4); 44 44 } 45 46 45 } 47 46 … … 305 304 'post_status' => 'any', 306 305 'numberposts' => -1, 307 'meta_query' => array( 308 'relation' => 'AND', 309 array( 310 'key' => '_posti_id', 311 'value' => $order_ids, 312 'compare' => 'IN' 313 ) 314 ) 306 'meta_key' => '_posti_id', 307 'meta_value' => $order_ids, 308 'meta_compare' => 'IN' 315 309 ); 316 310 $posts = wc_get_orders($posts_query); -
posti-warehouse/trunk/posti-warehouse.php
r3139663 r3149953 3 3 /** 4 4 * Plugin Name: Posti Warehouse 5 * Version: 3.0. 05 * Version: 3.0.1 6 6 * Description: Provides integration to Posti warehouse and dropshipping services. 7 7 * Author: Posti -
posti-warehouse/trunk/readme.txt
r3139663 r3149953 5 5 Tested up to: 6.6 6 6 Requires PHP: 7.1 7 Stable tag: 3.0. 07 Stable tag: 3.0.1 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.