donpb2823 2019-07-04 22:18
浏览 118
已采纳

有没有办法根据一定数量生成一些Woocommerce优惠券?

I'm fixing a plugin-loaded Woocommerce site and now I have a requirement to implement an automatic coupon generator based on the purchase amount: for example, I would like to establish a rule for every $100 purchase, if the customer buys $450, 4 discount coupons of $40 will be generated. All of this codes should be sent to the customer.

I've reviewed the WooCommerce documentation where I can create the coupons: https://docs.woocommerce.com/document/create-a-coupon-programatically/ and already implemented it and sending in the order review mail (after payment has been confirmed):

function add_order_email_instructions( $order, $sent_to_admin ) {

    if ( ! $sent_to_admin && $order->get_user_id() && 'processing' == $order->get_status()) {

        $lista_cupones  = array();
        $amount = '40';

        for ($i=1; $i<=$order->get_total()/100; $i++) {

            $longitud = 12;
            $key = '';
            $pattern = '1234567890ABCDFGHIJKLMNOPQRSTUWYZ';
            $max = strlen($pattern)-1;
            for($i=0;$i < $longitud;$i++) $key .= $pattern{mt_rand(0,$max)};
            $coupon_code = $key;

            $discount_type = 'fixed_cart'; 
            $coupon = array(
                'post_title' => $coupon_code,
                'post_content' => ''.$to,
                'post_status' => 'publish',
                'post_author' => 1,
                'post_type'     => 'shop_coupon'
            );

            $new_coupon_id = wp_insert_post( $coupon );
            update_post_meta( $new_coupon_id, 'discount_type', $discount_type );
            update_post_meta( $new_coupon_id, 'coupon_amount', $amount );
            update_post_meta( $new_coupon_id, 'individual_use', 'yes' );
            update_post_meta( $new_coupon_id, 'product_ids', '' );
            update_post_meta( $new_coupon_id, 'exclude_product_ids', '' );
            update_post_meta( $new_coupon_id, 'minimum_amount', '100' );
            update_post_meta( $new_coupon_id, 'exclude_sale_items', 'yes' );
            update_post_meta( $new_coupon_id, 'exclude_sale', 'yes' );
            update_post_meta( $new_coupon_id, 'usage_limit', '1' );
            update_post_meta( $new_coupon_id, 'expiry_date', strtotime("+3 days") );
            update_post_meta( $new_coupon_id, 'apply_before_tax', 'yes' );
            update_post_meta( $new_coupon_id, 'free_shipping', 'no' );

            array_push($lista_cupones, $coupon_code);

        }
        echo '<h2>';

        printf( __( 'Obt&eacute;n 40 soles de descuento')
        );
        echo '</h2>';

        printf(
            __( 'Gracias por su compra. Use el código de descuento <strong>%2$s</strong> para recibir %1$s soles de descuento en su siguiente compra.'),
            $amount,
            $coupon_code
        );
        echo '</p>';
    }
}
add_action('woocommerce_email_before_order_table','add_order_email_instructions',10);

Now this half works: it validates if order total is less than $100 and doesn't generate a coupon but if it's higher it only gives me one coupon even if order total is 200, 300 400, etc. (it doesn't even generate more than one coupon, seems like it only goes through the loop once and stops).

Thanks!

  • 写回答

1条回答 默认 最新

  • dqdl6469 2019-07-16 17:13
    关注

    Already solved, this is the code:

    function create_coupon () {
        $amount = '40';
        $longitud = 12;
        $key = '';
        $pattern = '1234567890ABCDFGHIJKLMNOPQRSTUWYZ';
        $max = strlen($pattern)-1;
        for($i=0;$i < $longitud;$i++) $key .= $pattern{mt_rand(0,$max)};
        $coupon_code = $key;
    
        $discount_type = 'fixed_cart'; 
        $coupon = array(
            'post_title' => $coupon_code,
            'post_content' => ''.$to,
            'post_status' => 'publish',
            'post_author' => 1,
            'post_type'     => 'shop_coupon'
        );
    
        $new_coupon_id = wp_insert_post( $coupon );
        update_post_meta( $new_coupon_id, 'discount_type', $discount_type );
        update_post_meta( $new_coupon_id, 'coupon_amount', $amount );
        update_post_meta( $new_coupon_id, 'individual_use', 'yes' );
        update_post_meta( $new_coupon_id, 'product_ids', '' );
        update_post_meta( $new_coupon_id, 'exclude_product_ids', '' );
        update_post_meta( $new_coupon_id, 'minimum_amount', '100' );
        update_post_meta( $new_coupon_id, 'exclude_sale_items', 'yes' );
        update_post_meta( $new_coupon_id, 'exclude_sale', 'yes' );
        update_post_meta( $new_coupon_id, 'usage_limit', '1' );
        update_post_meta( $new_coupon_id, 'expiry_date', strtotime("+3 days") );
        update_post_meta( $new_coupon_id, 'apply_before_tax', 'yes' );
        update_post_meta( $new_coupon_id, 'free_shipping', 'no' );
        //update_post_meta( $new_coupon_id, 'customer_email', $order->get_billing_email());
    
        return $coupon_code;
    }
    
    function add_order_email_instructions( $order, $sent_to_admin ) {
    
            if ( ! $sent_to_admin && $order->get_user_id() && 'processing' == $order->get_status()) {
    
                $lista_cupones  = [];
                $numero_cupones = $order->get_total()/100;
                for ($i=1; $i<=$numero_cupones; $i++) { 
                    array_push($lista_cupones, create_coupon());
                }
                echo '<h2>';
    
                printf( __( 'Obt&eacute;n 40 soles de descuento')
                );
                echo '</h2>';
    
                printf(
                    __( 'Gracias por su compra. Use el código de descuento <strong>%2$s</strong> para recibir %1$s soles de descuento en su siguiente compra.'),
                    $amount,
                    $lista_cupones 
                );
                echo '<br></p>';
            }
    }
    add_action('woocommerce_email_before_order_table','add_order_email_instructions',10);
    

    This is unfinished, now I have to show it in the adequate array format within the mail

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能
  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图