0

我有一个场景,我需要通过根据预订的持续时间调整预订的整体成本来更改总租金价格。预订持续时间是客户定义的 4 天时间段。

4 天(最短持续时间)= 基本成本 + 区块成本 8 天(最长持续时间)= 基本成本 + 区块成本 +(区块成本 *0.75)。

基于WooCommerce 购物车中产品的更改价格和我进行了一些更改的结帐答案代码。这是我的代码:

add_action( 'woocommerce_before_calculate_totals', 'custom_cart_item_price', 10, 1 );
function custom_cart_item_price( $cart ) {
    if ( is_admin() && ! defined( 'DOING_AJAX' ) )
        return;

    if ( did_action( 'woocommerce_before_calculate_totals' ) >= 2 )
        return;

    foreach ( $cart->get_cart() as $cart_item ){
        $booking_id = $cart_item['booking']['_booking_id'];
        $booking = get_wc_booking( $booking_id );
        $base_cost  = get_post_meta( $cart_item['product_id'], '_wc_booking_cost', true );
        $block_cost = get_post_meta( $cart_item['product_id'], '_wc_booking_block_cost', true );
        if ( $booking ) {
            $duration   = $cart_item['booking']['duration'];        
            if ($duration == 8) {
                $new_price = $base_cost +$block_cost + ($block_cost * 0.75);    //Calculate the new price           
                $cart_item['data']->set_price( $new_price ); // Set the new price
            }
        }       
    }
}

这很好用,但我想知道是否有一种方法可以使用诸如 woocommerce_bookings_pricing_fields 之类的操作永久设置它,以便折扣价显示在产品页面本身上。

4

1 回答 1

0

我设法通过以编程方式向可预订产品添加价格范围来实现它:

add_action( 'woocommerce_process_product_meta_booking', 'modify_product_costs', 100, 1 );

function modify_product_costs( $product_id ){
  $product = wc_get_product( $product_id );

  // We check that we have a block cost before
  if ( $product->get_block_cost() > 0 ){
    // Set base cost
    $new_booking_cost = ( $product->get_block_cost() * 0.5 ) + 100;

    $product->set_cost( $new_booking_cost ); 
    $product->save(); // Save the product data

    //Adjust cost for 8 days
    $pricing = array(
    array(
    'type' => 'blocks',
    'cost' => 0.875,
    'modifier' => 'times',
    'base_cost' => $new_booking_cost,
    'base_modifier' => 'equals',
    'from' => 2,
    'to' => 2
    )
    );

    update_post_meta( $product_id, '_wc_booking_pricing', $pricing );
 }
}

在输入整体成本后保存产品时,它会生成基本成本并添加定价线以提供所需的结果。

在此处输入图像描述

灵感来自这里这里这里这里

于 2018-12-22T20:31:59.133 回答