Changeset 2194098
- Timestamp:
- 11/15/2019 10:41:26 PM (6 years ago)
- Location:
- smart-send-logistics
- Files:
-
- 14 deleted
- 3 edited
- 27 copied
-
tags/8.0.19 (copied) (copied from smart-send-logistics/trunk)
-
tags/8.0.19/api (deleted)
-
tags/8.0.19/assets (copied) (copied from smart-send-logistics/trunk/assets)
-
tags/8.0.19/assets/css/ss-shipping-admin.css (copied) (copied from smart-send-logistics/trunk/assets/css/ss-shipping-admin.css)
-
tags/8.0.19/assets/css/ss-shipping-frontend.css (copied) (copied from smart-send-logistics/trunk/assets/css/ss-shipping-frontend.css)
-
tags/8.0.19/assets/js/ss-shipping-admin.js (copied) (copied from smart-send-logistics/trunk/assets/js/ss-shipping-admin.js)
-
tags/8.0.19/assets/js/ss-shipping-label.js (copied) (copied from smart-send-logistics/trunk/assets/js/ss-shipping-label.js)
-
tags/8.0.19/carriers (deleted)
-
tags/8.0.19/class.smartsend.bring.php (deleted)
-
tags/8.0.19/class.smartsend.gls.php (deleted)
-
tags/8.0.19/class.smartsend.postdanmark.php (deleted)
-
tags/8.0.19/class.smartsend.posten.php (deleted)
-
tags/8.0.19/class.smartsend.primary.php (deleted)
-
tags/8.0.19/css (deleted)
-
tags/8.0.19/includes (copied) (copied from smart-send-logistics/trunk/includes)
-
tags/8.0.19/includes/class-ss-plugins-screen-updates.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-plugins-screen-updates.php)
-
tags/8.0.19/includes/class-ss-shipping-autoloader.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-autoloader.php)
-
tags/8.0.19/includes/class-ss-shipping-logger.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-logger.php)
-
tags/8.0.19/includes/class-ss-shipping-shipment.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-shipment.php)
-
tags/8.0.19/includes/class-ss-shipping-wc-method.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-method.php)
-
tags/8.0.19/includes/class-ss-shipping-wc-order.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php) (1 diff)
-
tags/8.0.19/includes/class-ss-shipping-wc-product.php (copied) (copied from smart-send-logistics/trunk/includes/class-ss-shipping-wc-product.php)
-
tags/8.0.19/includes/frontend/class-ss-shipping-frontend.php (copied) (copied from smart-send-logistics/trunk/includes/frontend/class-ss-shipping-frontend.php)
-
tags/8.0.19/includes/lib/Smartsend/Api.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Api.php)
-
tags/8.0.19/includes/lib/Smartsend/Client.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Client.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Agent.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Agent.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment/Agent.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Agent.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment/Item.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Item.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment/Parcel.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Parcel.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment/Receiver.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Receiver.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment/Sender.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Sender.php)
-
tags/8.0.19/includes/lib/Smartsend/Models/Shipment/Services.php (copied) (copied from smart-send-logistics/trunk/includes/lib/Smartsend/Models/Shipment/Services.php)
-
tags/8.0.19/lang (deleted)
-
tags/8.0.19/readme.txt (copied) (copied from smart-send-logistics/trunk/readme.txt) (2 diffs)
-
tags/8.0.19/settings.php (deleted)
-
tags/8.0.19/smart-send-logistics.php (copied) (copied from smart-send-logistics/trunk/smart-send-logistics.php) (2 diffs)
-
tags/8.0.19/smartsend-api-functions.php (deleted)
-
tags/8.0.19/smartsend-flexdelivery.php (deleted)
-
tags/8.0.19/smartsend-pickuppoint.php (deleted)
-
tags/8.0.19/woocommerce-smartsend-logistics.php (deleted)
-
trunk/includes/class-ss-shipping-wc-order.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.19/includes/class-ss-shipping-wc-order.php
r2061608 r2194098 1239 1239 $product_variation = $product; 1240 1240 } 1241 $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2); 1242 if ($product_weight) { 1243 $weight_total += ($item['qty'] * $product_weight); 1241 1242 if ($product_variation) {//null|false if unable to load product 1243 $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2); 1244 if ($product_weight) { 1245 $weight_total += ($item['qty'] * $product_weight); 1246 } 1244 1247 } 1245 1248 } -
smart-send-logistics/tags/8.0.19/readme.txt
r2142204 r2194098 8 8 Tags: smartsend, smart send, shipping, shipping label, pickup, pick-up, pakkelabel, pakkelabels, pakkeboks, pakkeshop, hente selv, døgnboks, postnord, post nord, post danmark, gls, swipbox, bring, dao, dao365, dao 365, carrier, pacsoft, yourgls, mybring, postage, shipping method, your-gls, my-bring, pacosft-online, pacsoftonline, denmark, sweeden, posten, norway, post 9 9 Requires at least: 3.0.1 10 Tested up to: 5. 211 Stable tag: 8.0.1 810 Tested up to: 5.3 11 Stable tag: 8.0.19 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html 14 14 WC requires at least: 3.0.0 15 WC tested up to: 3. 715 WC tested up to: 3.8 16 16 Requires PHP: 5.6.0 17 17 … … 201 201 == Changelog == 202 202 203 = 8.0.19 = 204 * Bugfix: Order page failed when purchased products had been deleted 205 203 206 = 8.0.18 = 204 207 * Add extra info about cart content to debug log -
smart-send-logistics/tags/8.0.19/smart-send-logistics.php
r2142204 r2194098 7 7 * Author URI: https://www.smartsend.io 8 8 * Text Domain: smart-send-logistics 9 * Version: 8.0.1 89 * Version: 8.0.19 10 10 * WC requires at least: 2.6.0 11 * WC tested up to: 3. 711 * WC tested up to: 3.8 12 12 * 13 13 * This program is free software: you can redistribute it and/or modify … … 35 35 { 36 36 37 private $version = "8.0.1 8";37 private $version = "8.0.19"; 38 38 39 39 /** -
smart-send-logistics/trunk/includes/class-ss-shipping-wc-order.php
r2061608 r2194098 1239 1239 $product_variation = $product; 1240 1240 } 1241 $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2); 1242 if ($product_weight) { 1243 $weight_total += ($item['qty'] * $product_weight); 1241 1242 if ($product_variation) {//null|false if unable to load product 1243 $product_weight = round(wc_get_weight($product_variation->get_weight(), 'kg'), 2); 1244 if ($product_weight) { 1245 $weight_total += ($item['qty'] * $product_weight); 1246 } 1244 1247 } 1245 1248 } -
smart-send-logistics/trunk/readme.txt
r2142204 r2194098 8 8 Tags: smartsend, smart send, shipping, shipping label, pickup, pick-up, pakkelabel, pakkelabels, pakkeboks, pakkeshop, hente selv, døgnboks, postnord, post nord, post danmark, gls, swipbox, bring, dao, dao365, dao 365, carrier, pacsoft, yourgls, mybring, postage, shipping method, your-gls, my-bring, pacosft-online, pacsoftonline, denmark, sweeden, posten, norway, post 9 9 Requires at least: 3.0.1 10 Tested up to: 5. 211 Stable tag: 8.0.1 810 Tested up to: 5.3 11 Stable tag: 8.0.19 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html 14 14 WC requires at least: 3.0.0 15 WC tested up to: 3. 715 WC tested up to: 3.8 16 16 Requires PHP: 5.6.0 17 17 … … 201 201 == Changelog == 202 202 203 = 8.0.19 = 204 * Bugfix: Order page failed when purchased products had been deleted 205 203 206 = 8.0.18 = 204 207 * Add extra info about cart content to debug log -
smart-send-logistics/trunk/smart-send-logistics.php
r2142204 r2194098 7 7 * Author URI: https://www.smartsend.io 8 8 * Text Domain: smart-send-logistics 9 * Version: 8.0.1 89 * Version: 8.0.19 10 10 * WC requires at least: 2.6.0 11 * WC tested up to: 3. 711 * WC tested up to: 3.8 12 12 * 13 13 * This program is free software: you can redistribute it and/or modify … … 35 35 { 36 36 37 private $version = "8.0.1 8";37 private $version = "8.0.19"; 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.