Plugin Directory

Changeset 3407086


Ignore:
Timestamp:
12/01/2025 05:17:40 PM (4 months ago)
Author:
aarsiv
Message:

Buf gix

Location:
a2z-fedex-shipping
Files:
64 added
2 edited

Legend:

Unmodified
Added
Removed
  • a2z-fedex-shipping/trunk/a2zfedex_basic.php

    r3407061 r3407086  
    44 * Plugin URI: https://myshipi.com/
    55 * Description: Realtime Shipping Rates, shipping labels.
    6  * Version: 5.1.5
     6 * Version: 5.1.6
    77 * Author: Shipi
    88 * Author URI: https://myshipi.com/
     
    31393139
    31403140                $refunded_qty = $order->get_qty_refunded_for_item( $item->get_id() );
    3141                 $remaining_qty = $product_data['quantity'] + $refunded_qty;
     3141                $remaining_qty = $product_data['quantity'] - abs($refunded_qty);
    31423142
    31433143                if ($remaining_qty <= 0) {
     
    31853185                $product['product_name'] = apply_filters("shipi_product_name_change", str_replace('"', '', $getproduct->get_name()), $getproduct->get_id());
    31863186                $refunded_total = $order->get_total_refunded_for_item( $item->get_id() );
    3187                 $remaining_total = $product_data['total'] + $refunded_total;
     3187                $remaining_total = $product_data['total'] - abs($refunded_total);
    31883188                $product['price'] = (isset($remaining_total) && $remaining_total > 0) ? round($remaining_total/$remaining_qty, 2): $getproduct->get_price();
    31893189                $product['width'] = (!empty($getproduct->get_width())) ? round(wc_get_dimension($getproduct->get_width(),$mod_dim_unit,$woo_dim_unit)) : '';
  • a2z-fedex-shipping/trunk/readme.txt

    r3407061 r3407086  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 5.1.5
     7Stable tag: 5.1.6
    88License: GPLv3 or later License
    99URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    159159
    160160== Changelog ==
     161= 5.1.6 =
     162    > Bug Fixes.
    161163= 5.1.5 =
    162164    > Bug Fixes.
Note: See TracChangeset for help on using the changeset viewer.