按属性值减少WooCommerce项目清单

时间:2018-04-05 19:47:22

标签: php wordpress woocommerce orders stock

我使用Woocommerce"可变产品"唯一的变化是'尺寸'属性:15克,100克,250克。我想要做的是使用这个变化量传递到Woo wc-stock-functions,这样当产品变异时,15克'购买后,整体库存下降15,而非1。

在Woo内部,有文件wc-stock-functions(http://hookr.io/plugins/woocommerce/3.0.6/files/includes-wc-stock-functions/) - 这甚至提供了一个过滤器,woocommerce_order_item_quantity。我想用它来将库存数乘以克数,并用克数减少库存。

我正在尝试这个:

// define the woocommerce_order_item_quantity callback 
function filter_woocommerce_order_item_quantity( $item_get_quantity, $order, 
$item ) { 
$original_quantity = $item_get_quantity; 
$item_quantity_grams = $item->get_attribute('pa_size');
// attribute value is "15 grams" - so remove all but the numerals
$item_quantity_grams = preg_replace('/[^0-9.]+/', '', $item_quantity_grams);
// multiply for new quantity
$item_get_quantity = ($item_quantity_grams * $original_quantity);

return $item_get_quantity; 
}; 

// add the filter 
add_filter( 'woocommerce_order_item_quantity', 
'filter_woocommerce_order_item_quantity', 10, 3 ); 

但是我现在正在收到内部服务器错误。

有没有人知道我在上面的代码中做错了什么?谢谢你的帮助。

1 个答案:

答案 0 :(得分:4)

第一个错误位于$item->get_attribute('pa_size');,因为$itemWC_Order_Item_Product对象的实例,get_attribute()类不存在WC_Order_Item_Product方法。

相反,您需要使用WC_Product类中的get_product()方法获取WC_Order_Item_Product对象的实例...

所以你的代码应该是:

add_filter( 'woocommerce_order_item_quantity', 'filter_order_item_quantity', 10, 3 ); 
function filter_order_item_quantity( $quantity, $order, $item )  
{
    $product   = $item->get_product();
    $term_name = $product->get_attribute('pa_size');

    // The 'pa_size' attribute value is "15 grams" And we keep only the numbers
    $quantity_grams = preg_replace('/[^0-9.]+/', '', $term_name);

    // Calculated new quantity
    if( is_numeric ( $quantity_grams ) && $quantity_grams != 0 )
        $quantity *= $quantity_grams;

    return $quantity;
}

代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作。

  

注意:此挂钩功能将根据新返回的增加数量值(在这种情况下实际数量乘以15)减少库存数量