繁体   English   中英

如何在woocommerce中读取vartaion产品的库存数量

[英]How to read stock quantity of a vartaion product in woocommerce

我想在创建新产品后将产品的库存数量及其变体以及 Product_id(Post ID) 存储在自定义表中。 为此,我使用 'transition_post_status' 钩子 & 读取股票价值,我使用 wp_postmeta 表$prodcut_qty = get_post_meta($post->ID,'_stock'); .

假设有产品 A(库存数量 = 10)和 A1(库存数量 = 10),A2(库存数量 = 20),A3(库存数量 = 30)是 A 的变体,所以我想存储上述所有细节在自定义表中。

My DB schema is {post_id bigint (20), user_id bigint (20), stock_quantity int (11),log_date DATE}

我无法读取产品变化的库存值。 我的代码是 -

function insert_custom_table($new_status, $old_status, $post ) 
{
    
    global $post;
    global $wpdb;
    global $current_user;
    
    if(isset($post->ID))
    {
        $current_post = $post->ID;
    }
   wp_get_current_user();
    $user_id = $current_user->ID;
    
    if ( $post->post_type !== 'product' ) {
        return;
    }else{

            if ( 'publish' !== $new_status or 'publish' === $old_status ){
                //Check if someone published a post first time.
                return;
            }else{

                $prodcut_qty = get_post_meta($post->ID,'_stock');
               //Unable to read stock values for product variations.
                    
            }

    }      
    $stock_notes = 'New Stock';
    $wpdb->insert( 'wp_woocommerce_stock_custom', array( 'post_ID' => $current_post, 'user_ID' => $user_id, 'stock_quantity'=> $prodcut_qty ,'notes'=> $stock_notes) );


}

我正在使用 woocommerce 5.5.2

更新 :

我发现如果我们想在发布帖子后立即读取 postmeta 表,对于这种类型的任务钩子added_post_meta工作正常。

我做了一些测试,这应该可以解决问题

add_action( 'woocommerce_product_set_stock', 'wc_updated_product_stock_callback' );
add_action( 'woocommerce_variation_set_stock', 'wc_updated_product_stock_callback' );

function wc_updated_product_stock_callback( $product_id ) {
    // get an instance of the WC_Product Object
    $product      = wc_get_product( $product_id );
    $stock_qty    = $product->get_stock_quantity();

    // Here add your functionality
    
    error_log('Quantity is '.$stock_qty ); // For testing before working with DB
}

我得到了解决方案:

我发现如果我们想在发布帖子后立即读取 postmeta 表,对于这种类型的任务钩子 added_post_meta 工作正常。

我修改了我之前的代码

function insert_custom_table($meta_id, $post_id, $meta_key, $meta_value )
{
if(get_post_type( $post_id ) == 'product' && get_post_status( $post_id ) == 'publish')
        {
            $product_id = $post_id;
            $tablename = $wpdb->prefix.'woocommerce_stock_master';
            if(!$product_id)
            {
                return;
            }  

            wp_get_current_user();
            $user_id = $current_user->ID;

            // get an instance of the WC_Product Object
            // get product type
            // get stock _manage  
            if ($product->is_type( 'variable' )){
                 //$product_id = $product->get_id(); 
                
                $variations = $product->get_children(); // get variations
                foreach ($variations as $variations_value) {
                    $single_variation = new WC_Product_Variation($variations_value);
                    $single_variation_stock = $single_variation->get_stock_quantity();
                    
                    // insert into db 
                   
                }
           }
           if ($product->is_type( 'simple' )){
                if($manage_stock == 'yes')
                {
                  //insert in to db
                }
            }
        }else{
            return;
        }
        error_log('Quantity is '.$stock_qty);  
    }
    add_action( 'added_post_meta', 'insert_custom_table',10,4);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM