• Resolved Mister9

    (@mister9)


    We have a special case where we invoice our customers for payment after the order has been received instead of having them pay during checkout. Shipping charges are manually calculated and added to the order and then we add a 3% credit card fee on the grand total.

    To automate this process, I created a script that calculates the 3% charge once the shipping charge has been set through the backend and adds this fee item into the order automatically. This works when we add the shipping charge and click save/recalculate the *first* time.

    add_action( 'woocommerce_order_after_calculate_totals', "custom_order_after_calculate_totals", 10, 2);
    function custom_order_after_calculate_totals($and_taxes, $order) {
    
        if ( did_action( 'woocommerce_order_after_calculate_totals' ) >= 2 )
        return;
    
        if ( is_admin() && ! defined( 'DOING_AJAX' ) )
            return;
    
        $percentage = 0.03;
        $total = $order->get_total();
        $surcharge = $total * $percentage;
        $feeArray = array(
            'name' => '3% CC Fee',
            'amount' =>  wc_format_decimal($surcharge),
            'taxable' => false,
            'tax_class' => ''
        );
    
        //Get fees
        $fees = $order->get_fees();
        if(empty($fees)){
            //Add fee
            $fee_object = (object) wp_parse_args( $feeArray );
            $order->add_fee($fee_object);
        } else {
            //Update fee
            foreach($fees as $item_id => $item_fee){
                if($item_fee->get_name() == "3% CC Fee"){
                    $order->update_fee($item_id,$feeArray);
                }
            }
        }
    }

    If we decide to update the shipping cost, this code does get triggered again and attempts to update the fee however $total does not get the new order total from the updated shipping cost and so the fee does not change. Strangely enough, if I try to delete the fee item, a new fee is calculated and is added back with the correct fee amount.

    Anybody know how I can solve this?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘woocommerce_order_after_calculate_totals isn’t getting updated shipping costs’ is closed to new replies.