Использование этого кода для уменьшения запаса из инвентаря на значение атрибута.Это работает, чтобы уменьшить запас, но когда у вас есть около 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>';
}
}
Однако он не работает ...
Есть лиспособ проверить запас от $ количество?
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 );
}
}