sql >> データベース >  >> RDS >> Mysql

Woocommerceで注文したら、カスタムテーブルに値を挿入します

    あなたのコードには、 'order_id' => $emailのような奇妙なものがあります これは、メールではなく注文IDの値である必要があります…また、 $customer_id= $order->id; これは、顧客ユーザーのIDではなく、注文ID、および $email1= $order->id; それは使われておらず、間違っています…* /

    <?php
    
    #-------------------- code begins below -------------------------#
    
    add_action( 'woocommerce_order_status_completed', 'my_function' );
    function my_function($order_id) {
        global $wpdb;
    
        // Getting the order (object type)
        $order = wc_get_order( $order_id );
    
        // Getting order items
        $items = $order->get_items(); 
        $total_items_qty = 0;
    
        // Iterating through each item (here we do it on first only)
        foreach ( $items as $item ) {
            $total_items_qty += $item["qty"];
        }
    
        // Here are the correct way to get some values:
        $customer_id           = $order->customer_user;
        $billing_email         = $order->billing_email;
        $complete_billing_name = $order->billing_first_name . ' ' . $order->billing_last_name;
    
        // Getting the user data (if needed)
        $user_data             = get_userdata( $customer_id );
        $customer_login_name   = $user_data->user_login;
        $customer_login_email  = $user_data->user_email;
    
        // "$wpdb->prefix" will prepend your table prefix
        $table_name =  $wpdb->prefix."license_table";
    
        // This array is not correct (as explained above)
        $data = array( 
            'username'          => $customer_login_name,
            'order_id'          => $order_id,
            'number_of_cameras' => $total_items_qty,
            'boolean'           => 'false',
        );
    
        $wpdb->insert( $table_name, $data );
    
    }
    
    #-------------------- code end -------------------------#
    
    ?>
    

    また、奇妙なことに、注文に多くのアイテム(商品)を入れることができ、アイテムごとにも必要になるため、テーブルではこれを処理できません…




    1. 存在しない場合SQLステートメントのエラー

    2. Laravelでの移行で既存のテーブルに新しい列を追加する

    3. MySQLでレコードを段階的に選択し、Pythonでcsvに保存します

    4. SQLServerのテキスト型とvarcharデータ型