Changeset 2007746
- Timestamp:
- 01/07/2019 01:12:49 PM (7 years ago)
- Location:
- smart-send-logistics
- Files:
-
- 14 deleted
- 5 edited
- 15 copied
-
tags/8.0.11 (copied) (copied from smart-send-logistics/trunk)
-
tags/8.0.11/api (deleted)
-
tags/8.0.11/assets (copied) (copied from smart-send-logistics/trunk/assets)
-
tags/8.0.11/assets/css/ss-shipping-frontend.css (copied) (copied from smart-send-logistics/trunk/assets/css/ss-shipping-frontend.css)
-
tags/8.0.11/assets/js/ss-shipping-label.js (copied) (copied from smart-send-logistics/trunk/assets/js/ss-shipping-label.js)
-
tags/8.0.11/carriers (deleted)
-
tags/8.0.11/class.smartsend.bring.php (deleted)
-
tags/8.0.11/class.smartsend.gls.php (deleted)
-
tags/8.0.11/class.smartsend.postdanmark.php (deleted)
-
tags/8.0.11/class.smartsend.posten.php (deleted)
-
tags/8.0.11/class.smartsend.primary.php (deleted)
-
tags/8.0.11/css (deleted)
-
tags/8.0.11/includes (copied) (copied from smart-send-logistics/trunk/includes)
-
tags/8.0.11/includes/class-ss-shipping-autoloader.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-autoloader.php)
-
tags/8.0.11/includes/class-ss-shipping-logger.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-logger.php)
-
tags/8.0.11/includes/class-ss-shipping-shipment.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-shipment.php) (2 diffs)
-
tags/8.0.11/includes/class-ss-shipping-wc-method.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-method.php)
-
tags/8.0.11/includes/class-ss-shipping-wc-order.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php)
-
tags/8.0.11/includes/class-ss-shipping-wc-product.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-product.php)
-
tags/8.0.11/includes/frontend/class-ss-shipping-frontend.php (copied) (copied from smart-send-logistics/trunk/includes/frontend/class-ss-shipping-frontend.php)
-
tags/8.0.11/includes/lib/Smartsend/Client.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Client.php)
-
tags/8.0.11/includes/lib/Smartsend/Models/Shipment/Agent.php (modified) (1 diff)
-
tags/8.0.11/lang (deleted)
-
tags/8.0.11/readme.txt (copied) (copied from smart-send-logistics/trunk/readme.txt) (2 diffs)
-
tags/8.0.11/settings.php (deleted)
-
tags/8.0.11/smart-send-logistics.php (copied) (copied from smart-send-logistics/trunk/smart-send-logistics.php) (2 diffs)
-
tags/8.0.11/smartsend-api-functions.php (deleted)
-
tags/8.0.11/smartsend-flexdelivery.php (deleted)
-
tags/8.0.11/smartsend-pickuppoint.php (deleted)
-
tags/8.0.11/woocommerce-smartsend-logistics.php (deleted)
-
trunk/includes/class-ss-shipping-shipment.php (modified) (2 diffs)
-
trunk/includes/lib/Smartsend/Models/Shipment/Agent.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smart-send-logistics.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smart-send-logistics/tags/8.0.11/includes/class-ss-shipping-shipment.php
r1975504 r2007746 184 184 // Ensure id is string and not int 185 185 $product_id = $item['variation_id']; 186 $product_sku = empty($product_variation->get_sku()) ? strval($item['variation_id']) : $product_variation->get_sku();186 $product_sku = $product_variation->get_sku() ? $product_variation->get_sku() : strval($item['variation_id']); 187 187 188 188 // $product_attribute = wc_get_product_variation_attributes($item['variation_id']); … … 193 193 $product_id = $item['product_id']; 194 194 // Ensure id is string and not int 195 $product_sku = empty($product->get_sku()) ? strval($item['product_id']) : $product->get_sku();195 $product_sku = $product->get_sku() ? $product->get_sku() : strval($item['product_id']); 196 196 } 197 197 -
smart-send-logistics/tags/8.0.11/includes/lib/Smartsend/Models/Shipment/Agent.php
r1949668 r2007746 37 37 } 38 38 if(isset($receiver['name_line2'])) { 39 $this->setNameLine2( receiver['name_line2']);39 $this->setNameLine2($receiver['name_line2']); 40 40 } 41 41 if(isset($receiver['address_line1'])) { -
smart-send-logistics/tags/8.0.11/readme.txt
r1984581 r2007746 9 9 Requires at least: 3.0.1 10 10 Tested up to: 5.0 11 Stable tag: 8.0.1 011 Stable tag: 8.0.11 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html 14 WC requires at least: 2. 6.014 WC requires at least: 2.7.0 15 15 WC tested up to: 3.5 16 16 Requires PHP: 5.6.0 … … 190 190 == Changelog == 191 191 192 = 8.0.11 = 193 * Bugfix: PHP error when using name_line2 field for WooCommerce orders 194 * Bugfix: PHP error for older PHP versions 195 * Change WooCommerce minimum requirement to WC 2.7 196 192 197 = 8.0.10 = 193 198 * Add convenience wrapper for pick-up point function -
smart-send-logistics/tags/8.0.11/smart-send-logistics.php
r1984581 r2007746 7 7 * Author URI: https://www.smartsend.io 8 8 * Text Domain: smart-send-logistics 9 * Version: 8.0.1 09 * Version: 8.0.11 10 10 * WC requires at least: 2.6.0 11 11 * WC tested up to: 3.5 … … 35 35 { 36 36 37 private $version = "8.0.1 0";37 private $version = "8.0.11"; 38 38 39 39 /** -
smart-send-logistics/trunk/includes/class-ss-shipping-shipment.php
r1975504 r2007746 184 184 // Ensure id is string and not int 185 185 $product_id = $item['variation_id']; 186 $product_sku = empty($product_variation->get_sku()) ? strval($item['variation_id']) : $product_variation->get_sku();186 $product_sku = $product_variation->get_sku() ? $product_variation->get_sku() : strval($item['variation_id']); 187 187 188 188 // $product_attribute = wc_get_product_variation_attributes($item['variation_id']); … … 193 193 $product_id = $item['product_id']; 194 194 // Ensure id is string and not int 195 $product_sku = empty($product->get_sku()) ? strval($item['product_id']) : $product->get_sku();195 $product_sku = $product->get_sku() ? $product->get_sku() : strval($item['product_id']); 196 196 } 197 197 -
smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Agent.php
r1949668 r2007746 37 37 } 38 38 if(isset($receiver['name_line2'])) { 39 $this->setNameLine2( receiver['name_line2']);39 $this->setNameLine2($receiver['name_line2']); 40 40 } 41 41 if(isset($receiver['address_line1'])) { -
smart-send-logistics/trunk/readme.txt
r1984581 r2007746 9 9 Requires at least: 3.0.1 10 10 Tested up to: 5.0 11 Stable tag: 8.0.1 011 Stable tag: 8.0.11 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html 14 WC requires at least: 2. 6.014 WC requires at least: 2.7.0 15 15 WC tested up to: 3.5 16 16 Requires PHP: 5.6.0 … … 190 190 == Changelog == 191 191 192 = 8.0.11 = 193 * Bugfix: PHP error when using name_line2 field for WooCommerce orders 194 * Bugfix: PHP error for older PHP versions 195 * Change WooCommerce minimum requirement to WC 2.7 196 192 197 = 8.0.10 = 193 198 * Add convenience wrapper for pick-up point function -
smart-send-logistics/trunk/smart-send-logistics.php
r1984581 r2007746 7 7 * Author URI: https://www.smartsend.io 8 8 * Text Domain: smart-send-logistics 9 * Version: 8.0.1 09 * Version: 8.0.11 10 10 * WC requires at least: 2.6.0 11 11 * WC tested up to: 3.5 … … 35 35 { 36 36 37 private $version = "8.0.1 0";37 private $version = "8.0.11"; 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.