在 Woocommerce 3 中以编程方式向订单添加费用

Cal*_*lum 5 php wordpress orders woocommerce fee

我正在“即时”创建 Woocommerce 总计,因为我的购物车项目是从另一个 CMS 导入的。

目前,我无法为每个订单设置自定义“费用”,然后将订单标记为“暂停”:

                $order->set_date_created($creation_tsz);

                $order->set_address( $address, 'billing' );
                $order->set_address( $address, 'shipping' );
                $order->set_currency('GBP');

                $order->add_fee('Imported Total', $imported_total_here);
                $order->set_fee();

                $order->calculate_totals();

                $order->update_status('on-hold');
Run Code Online (Sandbox Code Playgroud)

任何关于此的曲目将不胜感激。

Loi*_*tec 13

WC_Abstract_Legacy_Order 方法add_fee()已弃用,并且该类set_fee()不存在该方法(仅存在于类)WC_OrderWC_CartWC_API_Orders

从 Woocommerce 3 开始,要以编程方式向订单添加费用,就有点复杂了。有一些参数可以设置为费用名称、税务状态、税种(如果需要)和费用金额(不含税)

同样要进行税收计算,根据税收设置,您需要设置一个包含至少客户国家/地区代码的数组(如果税收基于国家/地区)

假设费用金额变量名称$imported_total_fee在下面的代码中:

$order->set_date_created($creation_tsz);

$order->set_address( $address, 'billing' );
$order->set_address( $address, 'shipping' );
$order->set_currency('GBP');

## ------------- ADD FEE 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' => '', 
    'postcode' => '', 
    'city' => ''
);

// Get a new instance of the WC_Order_Item_Fee Object
$item_fee = new WC_Order_Item_Fee();

$item_fee->set_name( "Fee" ); // Generic fee name
$item_fee->set_amount( $imported_total_fee ); // Fee amount
$item_fee->set_tax_class( '' ); // default for ''
$item_fee->set_tax_status( 'taxable' ); // or 'none'
$item_fee->set_total( $imported_total_fee ); // Fee amount

// Calculating Fee taxes
$item_fee->calculate_taxes( $calculate_tax_for );

// Add Fee item to the order
$order->add_item( $item_fee );

## ----------------------------------------------- ##

$order->calculate_totals();

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

$order->save();
Run Code Online (Sandbox Code Playgroud)

经测试,完美运行。