我想在woocommerce订单上加收费用。我发现了很多这样的例子:
$ woocommerce-> cart-> 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);
但我不确定具体和语法是什么。
非常感谢任何帮助!
答案 0 :(得分:2)
我能够使用以下功能从我的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;
}