Добавить доставку к заказу программно в Woocommerce 3 - PullRequest
0 голосов
/ 07 декабря 2018

Я пробовал многочисленные решения, чтобы программно установить цену доставки (за заказ) через Woocommerce.Мне не повезло

Я попытался перезаписать мета-значение для элемента:

            update_post_meta( $woo_order_id, '_order_shipping', $new_ship_price );

Также попробовал что-то вроде этого [Вопрос / Ответ] [1]

                    $item_ship = new WC_Order_Item_Shipping();

                    $item_ship->set_name( "flat_rate" );
                    $item_ship->set_amount( $new_ship_price );
                    $item_ship->set_tax_class( '' );
                    $item_ship->set_tax_status( 'none' );


                    // Add Shipping item to the order
                    $order->add_item( $item_ship );

Но ни один из них не работает.Любые указатели приветствуются.


Аналогичная тема: Добавить плату к заказу программно в Woocommerce 3

1 Ответ

0 голосов
/ 07 декабря 2018

Чтобы справиться с этим в Woocommerce 3+, используйте следующее (из WC_Order объекта заказа $order):

## ------------- ADD SHIPPING PROCESS ---------------- ##

// Get the customer country code
$country_code = $order->get_shipping_country();

// Set the array for tax calculations
$calculate_tax_for = array(
    'country' => $country_code,
    'state' => '', // Can be set (optional)
    'postcode' => '', // Can be set (optional)
    'city' => '', // Can be set (optional)
);

// Optionally, set a total shipping amount
$new_ship_price = 5.10;

// Get a new instance of the WC_Order_Item_Shipping Object
$item = new WC_Order_Item_Shipping();

$item->set_method_title( "Flat rate" );
$item->set_method_id( "flat_rate:14" ); // set an existing Shipping method rate ID
$item->set_total( $new_ship_price ); // (optional)
$item->calculate_taxes($calculate_tax_for);

$order->add_item( $item );

$order->calculate_totals();

$order->update_status('on-hold');

// $order->save(); // If you don't update the order status

Протестировано произведение.

...