【发布时间】:2018-10-01 01:20:15
【问题描述】:
使用this code 按属性值减少库存中的库存。它可以减少库存,但是当您有 100 克库存并且客户购买 120 克时。它不会显示缺货。
于是创建了以下代码:
<?php
add_filter( 'woocommerce_order_item_quantity', 'filter_order_item_quantity', 10, 3 );
function filter_order_item_quantity( $quantity, $order, $item )
{
$product = $item->get_product();
$stock_quantity = $product->get_stock_quantity();
$term_name = $product->get_attribute('pa_weight');
// 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;
if($quantity > $stock_quantity) {
return $quantity;
} else {
echo '<p>Out of Stock</p>';
}
}
但是,它不起作用...
有没有办法从 $quantity 查询库存?
if($quantity > $stock_quantity) {
return $quantity;
} else {
echo '<p>Out of Stock</p>';
}
编辑:
试图用钩子将库存减少到wc_reduce_stock_levels,但没有成功
add_filter( 'wc_reduce_stock_levels', 'filter_reduce_stock_levels', 5, 1);
function filter_reduce_stock_levels( $order_id ) {
if ( is_a( $order_id, 'WC_Order' ) ) {
$order = $order_id;
$order_id = $order->get_id();
} else {
$order = wc_get_order( $order_id );
}
if ( 'yes' === get_option( 'woocommerce_manage_stock' ) && $order && apply_filters( 'woocommerce_can_reduce_order_stock', true, $order ) && sizeof( $order->get_items() ) > 0 ) {
foreach ( $order->get_items() as $item ) {
if ( $item->is_type( 'line_item' ) && ( $product = $item->get_product() ) && $product->managing_stock() ) {
$term_name = $product->get_attribute('pa_weight');
$qty = apply_filters( 'woocommerce_order_item_quantity', $item->get_quantity(), $order, $item );
$item_name = $product->get_formatted_name();
$new_stock = wc_update_product_stock( $product, $qty, 'decrease' );
$quantity_grams = preg_replace('/[^0-9.]+/', '', $term_name);
$qty *= $quantity_grams;
if ( ! is_wp_error( $new_stock ) ) {
/** translators: 1: item name 2: old stock quantity 3: new stock quantity */
$order->add_order_note( sprintf( __( '%1$s stock reduced from %2$s to %3$s.', 'woocommerce' ), $item_name, $new_stock + $qty, $new_stock ) );
// Get the latest product data.
$product = wc_get_product( $product->get_id() );
if ( '' !== get_option( 'woocommerce_notify_no_stock_amount' ) && $new_stock <= get_option( 'woocommerce_notify_no_stock_amount' ) ) {
do_action( 'woocommerce_no_stock', $product );
} elseif ( '' !== get_option( 'woocommerce_notify_low_stock_amount' ) && $new_stock <= get_option( 'woocommerce_notify_low_stock_amount' ) ) {
do_action( 'woocommerce_low_stock', $product );
}
if ( $new_stock < 0 ) {
do_action( 'woocommerce_product_on_backorder', array( 'product' => $product, 'order_id' => $order_id, 'quantity' => $qty ) );
}
}
}
}
// ensure stock is marked as "reduced" in case payment complete or other stock actions are called
$order->get_data_store()->set_stock_reduced( $order_id, true );
do_action( 'woocommerce_reduce_order_stock', $order );
}
}
【问题讨论】:
-
尝试 echo $quantity 和 $stock_quantity 看哪一个没有赋值?
-
它没有回应任何东西,不知道我是否正确。因为我是 PHP 菜鸟。但是,页面上没有打印任何内容...使用
echo $stock_quantity;echo $quantity; -
如果您不想乱用代码 sn-ps,可以使用 Attribute Stock for WooCommerce 实现此目的。
标签: php wordpress woocommerce