在WooCommerce中,支付订单状态支付的退款日期发生变化

问题描述 投票:1回答:1

我WooCommerce,我正在使用“Change admin payment status back to unpaid for pending order status in Woocommerce”答案代码重置订单的付款状态,当订单状态在后端手动更改为待处理时。

因此,例如,如果订单状态从“已完成”更改为“待定”,则会删除以下内容:“2019年4月2日下午5:29付款”

现在我的问题是在订单状态设置为“待定”之后,我尝试将状态再次设置为“已完成”,但未能设置付款日期或完成日期。

我正在使用最新版本的Woocommerce版本5.1.1

知道如何解决这个问题吗?

php wordpress woocommerce hook-woocommerce orders
1个回答
1
投票

更新#1 - 要解决此问题,请尝试以下操作:

add_action( 'woocommerce_order_status_changed', 'pending_reset_order_paid_date', 20, 4 );
function reset_order_paid_date( $order_id, $old_status, $new_status, $order ) {
    // Null paid date
    if ( in_array( $old_status, array('on-hold', 'processing', 'completed') ) && 'pending' === $new_status ) {
        $order->set_date_paid(null);
        $order->update_meta_data( '_reseted_paid_date', true ); // Add a custom meta data flag
        $order->save();
    }
    // Set paid date back when the paid date has been nulled on 'processing' and 'completed' status change
    if( $order->get_meta('_reseted_paid_date' ) && in_array( $new_status, array('pending', 'on-hold') )
        && in_array( $new_status, array('processing', 'completed') ) )
    {
        $order->set_date_paid( current_time( 'timestamp', true ) );
        $order->delete_meta_data( '_reseted_paid_date' ); // Remove the custom meta data flag
        $order->save();
    }
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

© www.soinside.com 2019 - 2024. All rights reserved.