我为从亚马逊同步的订单增加了运输费用。由于某些原因,我不得不在为亚马逊订单创建的woo订单中设置自定义运输固定价格。操作如下:
$OrderOBJ = wc_get_order(2343);
$item = new WC_Order_Item_Shipping();
$new_ship_price = 10;
$shippingItem = $OrderOBJ->get_items('shipping');
$item->set_method_title( "Amazon shipping rate" );
$item->set_method_id( "amazon_flat_rate:17" );
$item->set_total( $new_ship_price );
$OrderOBJ->update_item( $item );
$OrderOBJ->calculate_totals();
$OrderOBJ->save()
问题是,每次亚马逊状态更改时,我都必须更新订单,这样做没有问题,问题是,如果更新了运费,我也必须更新运输成本。但是我仍然没有找到这样做的方法。谁能告诉我如何更新以此方式设置的订单运送项目?还是事实,一旦设置了运输项目,我们就无法更新或删除它? 任何建议都将受到高度赞赏。谢谢。
答案 0 :(得分:2)
要添加或更新运输项目,请使用以下命令:
$order_id = 2343;
$order = wc_get_order($order_id);
$cost = 10;
$items = (array) $order->get_items('shipping');
$country = $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)
);
if ( sizeof( $items ) == 0 ) {
$item = new WC_Order_Item_Shipping();
$items = array($item);
$new_item = true;
}
// Loop through shipping items
foreach ( $items as $item ) {
$item->set_method_title( __("Amazon shipping rate") );
$item->set_method_id( "amazon_flat_rate:17" ); // set an existing Shipping method rate ID
$item->set_total( $cost ); // (optional)
$item->calculate_taxes( $calculate_tax_for ); // Calculate taxes
if( isset($new_item) && $new_item ) {
$order->add_item( $item );
} else {
$item->save()
}
}
$order->calculate_totals();
$order->save();
应该更好地工作……
要删除运输物品,请执行以下操作:
$order_id = 2343;
$order = wc_get_order($order_id);
$items = (array) $order->get_items('shipping');
if ( sizeof( $items ) > 0 ) {
// Loop through shipping items
foreach ( $items as $item_id => $item ) {
$order->remove_item( $item_id );
}
$order->calculate_totals();
$order->save();
}
相关:Add a shipping to an order programmatically in Woocommerce 3