我想在 woocommerce 订单中添加费用。我发现了很多这样的例子:
$woocommerce->购物车->add_fee()
但是我需要从函数内向现有(正在处理或计划的)订单添加费用。
我可以简单地调用add_fee()吗
例如,如果我想添加 15 美元的“期权调整”费用,该费用不需纳税,我可以简单地执行以下操作吗 add_fee('选项调整', 15, $taxable = false, $tax_class='')
当然,问题是购物车之外的 add_fee 无法告诉我要向哪个订单添加费用。
我一直在看这个: http://woocommerce.wp-a2z.org/oik_api/wc_abstract_orderadd_fee/ 这让我想知道我是否可以通过使用类似以下内容从 WC_Abstract_order 中调用 add_fee:
$order = new WC_Order( $order_id );
但我不确定具体细节和语法是什么。
任何帮助将非常感激!
我能够使用以下命令从我的functions.php 成功添加 woocommerce 费用。具体来说,如果用户使用重力表单编辑与价格相关的选项,我会从“gform_after_submission”操作内部调用它来调整预定付款。
注意:需要您要添加费用的 woocommerce 订单的订单 ID ($order_id)
1:设置 woocommerce 费用对象
$feename = 'Option Adjustment';
$feeamount = 40;
//The following sets up the fee object in a format accepted by woocommerce
$fee = array('name' => $feename, 'amount' => $feeamount, 'taxable' => false, 'tax_class' => '');
2.调用添加费用的函数 (#3)
blb_add_fee($fee, $order_id);
3.添加费用的函数(改编自http://woocommerce.wp-a2z.org/oik_api/wc_abstract_orderadd_fee/)
function blb_add_fee( $fee, $order_id ) {
$item_id = wc_add_order_item( $order_id, array(
'order_item_name' => $fee['name'],
'order_item_type' => 'fee'
) );
if ( ! $item_id ) {
return false;
}
if ( $fee['taxable'] ) {
wc_add_order_item_meta( $item_id, '_tax_class', $fee['tax_class'] );
} else {
wc_add_order_item_meta( $item_id, '_tax_class', '0' );
}
wc_add_order_item_meta( $item_id, '_line_total', wc_format_decimal( $fee['amount'] ) );
wc_add_order_item_meta( $item_id, '_line_tax', wc_format_decimal( $fee['tax'] ) );
// Save tax data - Since 2.2
$tax_data = array_map( 'wc_format_decimal', $fee['tax_data'] );
wc_add_order_item_meta( $item_id, '_line_tax_data', array( 'total' => $tax_data ) );
do_action( 'woocommerce_order_add_fee', $order_id, $item_id, $fee );
//Remove the following line (blb_calculate_totals) if you dont need to recalculate your totals
blb_calculate_totals( $and_taxes = false, $order_id );
return $item_id;
}
4.最后,您可能想重新计算总计(上面使用“blb_calculate_totals”调用并改编自 http://woocommerce.wp-a2z.org/oik_api/wc_abstract_ordercalculate_totals/)
function blb_calculate_totals( $and_taxes = false, $order_id ) {
$cart_subtotal = 0;
$cart_total = 0;
$fee_total = 0;
$cart_subtotal_tax = 0;
$cart_total_tax = 0;
/*
if ( $and_taxes && wc_tax_enabled() ) {
$this->calculate_taxes();
}
*/
// line items
$order = new WC_Order( $order_id );
foreach ( $order->get_items() as $item ) {
$cart_subtotal += wc_format_decimal( isset( $item['line_subtotal'] ) ? $item['line_subtotal'] : 0 );
$cart_total += wc_format_decimal( isset( $item['line_total'] ) ? $item['line_total'] : 0 );
$cart_subtotal_tax += wc_format_decimal( isset( $item['line_subtotal_tax'] ) ? $item['line_subtotal_tax'] : 0 );
$cart_total_tax += wc_format_decimal( isset( $item['line_tax'] ) ? $item['line_tax'] : 0 );
}
//$this->calculate_shipping();
foreach ( $order->get_fees() as $item ) {
$fee_total += $item['line_total'];
}
$order->set_total( $cart_subtotal - $cart_total, 'cart_discount' );
$order->set_total( $cart_subtotal_tax - $cart_total_tax, 'cart_discount_tax' );
$grand_total = round( $cart_total + $fee_total + $order->get_total_shipping() + $order->get_cart_tax() + $order->get_shipping_tax(), wc_get_price_decimals() );
$order->set_total( $grand_total, 'total' );
return $grand_total;
}