Changeset 3253406
- Timestamp:
- 03/10/2025 03:00:32 PM (12 months ago)
- Location:
- shipping-coordinadora-woocommerce
- Files:
-
- 1 deleted
- 4 edited
- 14 copied
-
tags/3.1.34 (copied) (copied from shipping-coordinadora-woocommerce/trunk)
-
tags/3.1.34/assets/build (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/build)
-
tags/3.1.34/assets/js/config.js (deleted)
-
tags/3.1.34/assets/js/shipping-coordinadora-wc.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/shipping-coordinadora-wc.js)
-
tags/3.1.34/assets/js/sweetalert2-min.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/sweetalert2-min.js)
-
tags/3.1.34/assets/js/view-order.js (copied) (copied from shipping-coordinadora-woocommerce/trunk/assets/js/view-order.js)
-
tags/3.1.34/includes/admin/settings.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/admin/settings.php)
-
tags/3.1.34/includes/class-method-shipping-coordinadora-collection-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-collection-wc.php)
-
tags/3.1.34/includes/class-method-shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-method-shipping-coordinadora-wc.php)
-
tags/3.1.34/includes/class-shipping-coordinadora-wc-admin.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-admin.php) (2 diffs)
-
tags/3.1.34/includes/class-shipping-coordinadora-wc-plugin.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-plugin.php)
-
tags/3.1.34/includes/class-shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc.php) (2 diffs)
-
tags/3.1.34/lib/coordinadora-webservice-php/src/WebService.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/lib/coordinadora-webservice-php/src/WebService.php)
-
tags/3.1.34/readme.txt (copied) (copied from shipping-coordinadora-woocommerce/trunk/readme.txt) (2 diffs)
-
tags/3.1.34/shipping-coordinadora-wc.php (copied) (copied from shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php) (2 diffs)
-
trunk/includes/class-shipping-coordinadora-wc-admin.php (modified) (2 diffs)
-
trunk/includes/class-shipping-coordinadora-wc.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shipping-coordinadora-wc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shipping-coordinadora-woocommerce/tags/3.1.34/includes/class-shipping-coordinadora-wc-admin.php
r3246808 r3253406 11 11 public function register_settings(): void 12 12 { 13 14 13 $schema = array( 15 14 'type' => 'object', … … 155 154 printf( 156 155 '<div class="wrap" id="wizard-coordinadora">%s</div>', 157 esc_html__( 'Cargando…' , 'unadorned-announcement-bar')156 esc_html__( 'Cargando…') 158 157 ); 159 158 ?> -
shipping-coordinadora-woocommerce/tags/3.1.34/includes/class-shipping-coordinadora-wc.php
r3251894 r3253406 454 454 455 455 $quantity = $item->get_quantity(); 456 $height_product = floatval($_product->get_height()); 457 $weight_product = floatval($_product->get_weight()); 456 458 457 459 $namesProducts[] = $_product->get_name(); … … 459 461 460 462 $custom_price_product = get_post_meta($_product->get_id(), '_shipping_custom_price_product_smp', true); 463 $custom_price_product = floatval($custom_price_product); 461 464 $total_valorization += $custom_price_product > 0 ? wc_format_decimal($custom_price_product, 0) : wc_format_decimal($_product->get_price(), 0); 462 465 463 $height += $ _product->get_height()* $quantity;466 $height += $height_product * $quantity; 464 467 $length = $_product->get_length() > $length ? $_product->get_length() : $length; 465 $weight += $ _product->get_weight()* $quantity;468 $weight += $weight_product * $quantity; 466 469 $width = $_product->get_width() > $width ? $_product->get_width() : $width; 467 470 -
shipping-coordinadora-woocommerce/tags/3.1.34/readme.txt
r3251894 r3253406 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 8.1 8 Stable tag: 3.1.3 38 Stable tag: 3.1.34 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 122 122 = 3.1.33 = 123 123 * Fixed validation name, SKU of product 124 = 3.1.34 = 125 * Fixed float height, weight 124 126 125 127 == Additional Info == -
shipping-coordinadora-woocommerce/tags/3.1.34/shipping-coordinadora-wc.php
r3251894 r3253406 3 3 * Plugin Name: Shipping Coordinadora Woocommerce 4 4 * Description: Shipping Coordinadora Woocommerce is available for Colombia 5 * Version: 3.1.3 35 * Version: 3.1.34 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 19 19 20 20 if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){ 21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.3 3');21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.34'); 22 22 } 23 23 -
shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc-admin.php
r3246808 r3253406 11 11 public function register_settings(): void 12 12 { 13 14 13 $schema = array( 15 14 'type' => 'object', … … 155 154 printf( 156 155 '<div class="wrap" id="wizard-coordinadora">%s</div>', 157 esc_html__( 'Cargando…' , 'unadorned-announcement-bar')156 esc_html__( 'Cargando…') 158 157 ); 159 158 ?> -
shipping-coordinadora-woocommerce/trunk/includes/class-shipping-coordinadora-wc.php
r3251894 r3253406 454 454 455 455 $quantity = $item->get_quantity(); 456 $height_product = floatval($_product->get_height()); 457 $weight_product = floatval($_product->get_weight()); 456 458 457 459 $namesProducts[] = $_product->get_name(); … … 459 461 460 462 $custom_price_product = get_post_meta($_product->get_id(), '_shipping_custom_price_product_smp', true); 463 $custom_price_product = floatval($custom_price_product); 461 464 $total_valorization += $custom_price_product > 0 ? wc_format_decimal($custom_price_product, 0) : wc_format_decimal($_product->get_price(), 0); 462 465 463 $height += $ _product->get_height()* $quantity;466 $height += $height_product * $quantity; 464 467 $length = $_product->get_length() > $length ? $_product->get_length() : $length; 465 $weight += $ _product->get_weight()* $quantity;468 $weight += $weight_product * $quantity; 466 469 $width = $_product->get_width() > $width ? $_product->get_width() : $width; 467 470 -
shipping-coordinadora-woocommerce/trunk/readme.txt
r3251894 r3253406 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 8.1 8 Stable tag: 3.1.3 38 Stable tag: 3.1.34 9 9 License: GNU General Public License v3.0 10 10 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 122 122 = 3.1.33 = 123 123 * Fixed validation name, SKU of product 124 = 3.1.34 = 125 * Fixed float height, weight 124 126 125 127 == Additional Info == -
shipping-coordinadora-woocommerce/trunk/shipping-coordinadora-wc.php
r3251894 r3253406 3 3 * Plugin Name: Shipping Coordinadora Woocommerce 4 4 * Description: Shipping Coordinadora Woocommerce is available for Colombia 5 * Version: 3.1.3 35 * Version: 3.1.34 6 6 * Author: Saul Morales Pacheco 7 7 * Author URI: https://saulmoralespa.com … … 19 19 20 20 if(!defined('SHIPPING_COORDINADORA_WC_CSWC_VERSION')){ 21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.3 3');21 define('SHIPPING_COORDINADORA_WC_CSWC_VERSION', '3.1.34'); 22 22 } 23 23
Note: See TracChangeset
for help on using the changeset viewer.