Changeset 3045271
- Timestamp:
- 03/04/2024 10:11:08 PM (2 years ago)
- Location:
- shipping-servientrega-woocommerce
- Files:
-
- 4 deleted
- 3 edited
- 5 copied
-
tags/7.0.2 (copied) (copied from shipping-servientrega-woocommerce/trunk)
-
tags/7.0.2/includes/class-method-shipping-servientrega-wc.php (copied) (copied from shipping-servientrega-woocommerce/trunk/includes/class-method-shipping-servientrega-wc.php)
-
tags/7.0.2/includes/class-shipping-servientrega-wc.php (copied) (copied from shipping-servientrega-woocommerce/trunk/includes/class-shipping-servientrega-wc.php) (2 diffs)
-
tags/7.0.2/lib/lib (deleted)
-
tags/7.0.2/lib/vendor/saulmoralespa/servientrega-webservice-php/.env (deleted)
-
tags/7.0.2/lib/vendor/saulmoralespa/servientrega-webservice-php/.git (deleted)
-
tags/7.0.2/lib/vendor/saulmoralespa/servientrega-webservice-php/src/SoapClientNG.php (deleted)
-
tags/7.0.2/readme.txt (copied) (copied from shipping-servientrega-woocommerce/trunk/readme.txt) (4 diffs)
-
tags/7.0.2/shipping-servientrega-wc.php (copied) (copied from shipping-servientrega-woocommerce/trunk/shipping-servientrega-wc.php) (2 diffs)
-
trunk/includes/class-shipping-servientrega-wc.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/shipping-servientrega-wc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipping-servientrega-woocommerce/tags/7.0.2/includes/class-shipping-servientrega-wc.php
r3037317 r3045271 6 6 { 7 7 public $servientrega; 8 9 const MIN_WEIGHT_ALLOWED = 3; 8 10 9 11 public function __construct($instance_id = 0) … … 349 351 } 350 352 351 $data['weight'] = max(ceil($volume_weight), $data['weight']); 353 $weight = max(ceil($volume_weight), $data['weight']); 354 $data['weight'] = $instance->servientrega_product_type === '2' && $weight < self::MIN_WEIGHT_ALLOWED ? self::MIN_WEIGHT_ALLOWED : $weight; 352 355 $data['total_valorization'] = max($data['total_valorization'], $total_min_shipping); 353 356 -
shipping-servientrega-woocommerce/tags/7.0.2/readme.txt
r3037317 r3045271 6 6 Tested up to: 6.4.3 7 7 Requires PHP: 8.1 8 Stable tag: 7.0. 18 Stable tag: 7.0.2 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 50 50 == Changelog == 51 51 52 = 5.0.0 =53 * Updated calculate shipping54 = 5.0.1 =55 * Fixed ssl calculate shipping56 = 5.0.2 =57 * Fixed special characters of cities58 = 5.0.3 =59 * Fixed saved origin city and refactor shipping_servientrega_get_shop60 = 5.0.4 =61 * Fixed default marketplace dokan shipping_servientrega_get_shop62 = 5.0.5 =63 * Fixed apply_filter servientrega_shipping_calculate_cost64 = 5.0.6 =65 * Fixed servientrega_product_type in calculate_cost66 = 5.0.7 =67 * Fixed servientrega_product_type in calculate_cost68 = 5.0.8 =69 * Fixed ceil dimensions and updated readme version wordpress70 = 5.0.9 =71 * Fixed function dimensions_weight72 = 5.0.10 =73 * Fixed settings74 = 5.0.11 =75 * Fixed generate guide76 = 5.0.12 =77 * Refactor config.js78 = 5.0.13 =79 * Updated settings80 = 5.0.14 =81 * Updated settings82 = 5.0.15 =83 * Fixed calculate_cost84 = 5.0.16 =85 * Fixed name_destination, content_column_print_guide86 = 5.0.17 =87 * Fixed calculate_cost88 = 5.0.18 =89 * Added register_deactivation_hook90 = 5.0.19 =91 * Updated wp compatible version92 = 5.0.20 =93 * Fixed settings94 = 5.0.21 =95 * Updated supported for multisite96 = 5.0.22 =97 * Updated prints type options of guide98 = 5.0.23 =99 * Updated cities, Bogotá100 = 5.0.24 =101 * Updated wp compatible version102 = 5.0.25 =103 * Updated guzzlehttp/guzzle104 = 5.0.26 =105 * Updated call Utils::jsonDecode106 = 5.0.27 =107 * Fixed non-static method Shipping_Servientrega_WC_Plugin::variation_settings_fields108 = 5.0.28 =109 * Fixed endpoints WebService110 = 5.0.29 =111 * Fixed endpoints WebService112 = 5.0.30 =113 * Fixed options SOAP114 = 5.0.31 =115 * Fixed SSL SOAP116 = 5.0.32 =117 * Updated compatible with Multi-vendor118 = 5.0.33 =119 * Updated class name button generate guide120 = 5.0.34 =121 * Fixed round weight of pieces122 = 5.0.35 =123 * Fixed count pieces in calculate_cost124 = 5.0.36 =125 * Fixed generate guide126 52 = 6.0.0 = 127 53 * Added bulk action generate_guides_servientrega … … 134 60 = 7.0.1 = 135 61 * Updated determine the type of weight to use 62 = 7.0.2 = 63 * Fixed min weight allowed in "mercancia premier" 136 64 137 65 == Additional Info == … … 139 67 140 68 == Credits == 141 * [ Saul Morales Pacheco](https://saulmoralespa.com) [@saulmoralesp](http://twitter.com/saulmoralesp)69 * [Website](https://saulmoralespa.com) [Linkedin](https://www.linkedin.com/in/saulmoralespa/) -
shipping-servientrega-woocommerce/tags/7.0.2/shipping-servientrega-wc.php
r3037317 r3045271 3 3 * Plugin Name: Shipping Servientrega Woocommerce 4 4 * Description: Shipping Servientrega Woocommerce is available for Colombia 5 * Version: 7.0. 15 * Version: 7.0.2 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 17 17 18 18 if(!defined('SHIPPING_SERVIENTREGA_WC_SS_VERSION')){ 19 define('SHIPPING_SERVIENTREGA_WC_SS_VERSION', '7.0. 1');19 define('SHIPPING_SERVIENTREGA_WC_SS_VERSION', '7.0.2'); 20 20 } 21 21 -
shipping-servientrega-woocommerce/trunk/includes/class-shipping-servientrega-wc.php
r3037317 r3045271 6 6 { 7 7 public $servientrega; 8 9 const MIN_WEIGHT_ALLOWED = 3; 8 10 9 11 public function __construct($instance_id = 0) … … 349 351 } 350 352 351 $data['weight'] = max(ceil($volume_weight), $data['weight']); 353 $weight = max(ceil($volume_weight), $data['weight']); 354 $data['weight'] = $instance->servientrega_product_type === '2' && $weight < self::MIN_WEIGHT_ALLOWED ? self::MIN_WEIGHT_ALLOWED : $weight; 352 355 $data['total_valorization'] = max($data['total_valorization'], $total_min_shipping); 353 356 -
shipping-servientrega-woocommerce/trunk/readme.txt
r3037317 r3045271 6 6 Tested up to: 6.4.3 7 7 Requires PHP: 8.1 8 Stable tag: 7.0. 18 Stable tag: 7.0.2 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 50 50 == Changelog == 51 51 52 = 5.0.0 =53 * Updated calculate shipping54 = 5.0.1 =55 * Fixed ssl calculate shipping56 = 5.0.2 =57 * Fixed special characters of cities58 = 5.0.3 =59 * Fixed saved origin city and refactor shipping_servientrega_get_shop60 = 5.0.4 =61 * Fixed default marketplace dokan shipping_servientrega_get_shop62 = 5.0.5 =63 * Fixed apply_filter servientrega_shipping_calculate_cost64 = 5.0.6 =65 * Fixed servientrega_product_type in calculate_cost66 = 5.0.7 =67 * Fixed servientrega_product_type in calculate_cost68 = 5.0.8 =69 * Fixed ceil dimensions and updated readme version wordpress70 = 5.0.9 =71 * Fixed function dimensions_weight72 = 5.0.10 =73 * Fixed settings74 = 5.0.11 =75 * Fixed generate guide76 = 5.0.12 =77 * Refactor config.js78 = 5.0.13 =79 * Updated settings80 = 5.0.14 =81 * Updated settings82 = 5.0.15 =83 * Fixed calculate_cost84 = 5.0.16 =85 * Fixed name_destination, content_column_print_guide86 = 5.0.17 =87 * Fixed calculate_cost88 = 5.0.18 =89 * Added register_deactivation_hook90 = 5.0.19 =91 * Updated wp compatible version92 = 5.0.20 =93 * Fixed settings94 = 5.0.21 =95 * Updated supported for multisite96 = 5.0.22 =97 * Updated prints type options of guide98 = 5.0.23 =99 * Updated cities, Bogotá100 = 5.0.24 =101 * Updated wp compatible version102 = 5.0.25 =103 * Updated guzzlehttp/guzzle104 = 5.0.26 =105 * Updated call Utils::jsonDecode106 = 5.0.27 =107 * Fixed non-static method Shipping_Servientrega_WC_Plugin::variation_settings_fields108 = 5.0.28 =109 * Fixed endpoints WebService110 = 5.0.29 =111 * Fixed endpoints WebService112 = 5.0.30 =113 * Fixed options SOAP114 = 5.0.31 =115 * Fixed SSL SOAP116 = 5.0.32 =117 * Updated compatible with Multi-vendor118 = 5.0.33 =119 * Updated class name button generate guide120 = 5.0.34 =121 * Fixed round weight of pieces122 = 5.0.35 =123 * Fixed count pieces in calculate_cost124 = 5.0.36 =125 * Fixed generate guide126 52 = 6.0.0 = 127 53 * Added bulk action generate_guides_servientrega … … 134 60 = 7.0.1 = 135 61 * Updated determine the type of weight to use 62 = 7.0.2 = 63 * Fixed min weight allowed in "mercancia premier" 136 64 137 65 == Additional Info == … … 139 67 140 68 == Credits == 141 * [ Saul Morales Pacheco](https://saulmoralespa.com) [@saulmoralesp](http://twitter.com/saulmoralesp)69 * [Website](https://saulmoralespa.com) [Linkedin](https://www.linkedin.com/in/saulmoralespa/) -
shipping-servientrega-woocommerce/trunk/shipping-servientrega-wc.php
r3037317 r3045271 3 3 * Plugin Name: Shipping Servientrega Woocommerce 4 4 * Description: Shipping Servientrega Woocommerce is available for Colombia 5 * Version: 7.0. 15 * Version: 7.0.2 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 17 17 18 18 if(!defined('SHIPPING_SERVIENTREGA_WC_SS_VERSION')){ 19 define('SHIPPING_SERVIENTREGA_WC_SS_VERSION', '7.0. 1');19 define('SHIPPING_SERVIENTREGA_WC_SS_VERSION', '7.0.2'); 20 20 } 21 21
Note: See TracChangeset
for help on using the changeset viewer.