Changeset 3397768
- Timestamp:
- 11/18/2025 06:12:49 AM (4 months ago)
- Location:
- a2z-ups-shipping
- Files:
-
- 31 added
- 3 edited
-
tags/4.4.2 (added)
-
tags/4.4.2/a2zups_basic.php (added)
-
tags/4.4.2/controllors (added)
-
tags/4.4.2/controllors/classes (added)
-
tags/4.4.2/controllors/classes/hit-box-packing.php (added)
-
tags/4.4.2/controllors/classes/index.php (added)
-
tags/4.4.2/controllors/classes/weight_pack (added)
-
tags/4.4.2/controllors/classes/weight_pack/class-hit-weight-packing-util.php (added)
-
tags/4.4.2/controllors/classes/weight_pack/class-hit-weight-packing.php (added)
-
tags/4.4.2/controllors/classes/weight_pack/class-hit-weight-strategy-ascend.php (added)
-
tags/4.4.2/controllors/classes/weight_pack/class-hit-weight-strategy-descend.php (added)
-
tags/4.4.2/controllors/classes/weight_pack/class-hit-weight-strategy-simple.php (added)
-
tags/4.4.2/controllors/classes/weight_pack/index.php (added)
-
tags/4.4.2/controllors/hit_ups_auto_init.php (added)
-
tags/4.4.2/controllors/index.php (added)
-
tags/4.4.2/controllors/ups_rest_main.php (added)
-
tags/4.4.2/controllors/views (added)
-
tags/4.4.2/controllors/views/hit_ups_automated_settings_view.php (added)
-
tags/4.4.2/controllors/views/ups_logo.png (added)
-
tags/4.4.2/controllors/xml (added)
-
tags/4.4.2/controllors/xml/email_temp.html (added)
-
tags/4.4.2/controllors/xml/index.php (added)
-
tags/4.4.2/controllors/xml/label.xml (added)
-
tags/4.4.2/controllors/xml/label_return.xml (added)
-
tags/4.4.2/controllors/xml/rate.xml (added)
-
tags/4.4.2/i18n (added)
-
tags/4.4.2/i18n/index.php (added)
-
tags/4.4.2/i18n/languages (added)
-
tags/4.4.2/i18n/languages/index.php (added)
-
tags/4.4.2/index.php (added)
-
tags/4.4.2/readme.txt (added)
-
trunk/a2zups_basic.php (modified) (1 diff)
-
trunk/controllors/ups_rest_main.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
a2z-ups-shipping/trunk/a2zups_basic.php
r3375247 r3397768 5 5 * Plugin URI: https://a2zplugins.com/product/ups-express-shipping-with-label-printing/ 6 6 * Description: Realtime Shipping Rates, Shipping label, commercial invoice automation included. 7 * Version: 4.4. 17 * Version: 4.4.2 8 8 * Author: Shipi 9 9 * Author URI: https://myshipi.com/ -
a2z-ups-shipping/trunk/controllors/ups_rest_main.php
r3375247 r3397768 166 166 foreach ($pack['packed_products'] as $pp_key => $p_prods) { 167 167 if (isset($p_prods['price'])) { 168 $this->order_total += $p_prods['price']; 168 // $this->order_total += $p_prods['price']; 169 $this->order_total += floatval($p_prods['price']); 169 170 } 170 171 } 171 $this->total_pack_weight += isset($pack['Weight']['Value']) ? substr(number_format(wc_get_weight($pack['Weight']['Value'],$this->mod_weg_unit,$this->woo_weg_unit), 4), 0, 6) : "0.5000"; 172 // $this->total_pack_weight += isset($pack['Weight']['Value']) ? substr(number_format(wc_get_weight($pack['Weight']['Value'],$this->mod_weg_unit,$this->woo_weg_unit), 4), 0, 6) : "0.5000"; 173 $this->total_pack_weight += isset($pack['Weight']['Value']) ? floatval(substr(number_format(wc_get_weight($pack['Weight']['Value'], $this->mod_weg_unit, $this->woo_weg_unit), 4), 0, 6)) : 0.5; 172 174 $this->total_pack_count++; 173 175 } -
a2z-ups-shipping/trunk/readme.txt
r3375247 r3397768 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 4.4. 18 Stable tag: 4.4.2 9 9 License: GPLv3 or later License 10 10 URI: http://www.gnu.org/licenses/gpl-3.0.html … … 97 97 98 98 == Changelog == 99 = 4.4.2= 100 > Bug Fixes 101 99 102 = 4.4.1 = 100 103 > Additional handling charges hook is added.
Note: See TracChangeset
for help on using the changeset viewer.