您好,我正在尝试在 mu 插件中创建一个功能,以防止某些用户将订单状态从特定订单状态更改为特定订单状态。
我四处寻找并尝试了许多不同的方法,但似乎没有任何效果。
实际上该函数正在使用 woocommerce_order_status_changed
动作钩子运行。问题是这个钩子在订单状态已经改变后运行,是什么导致了无限循环。
我发现的最有用的钩子似乎是 woocommerce_before_order_object_save
。
我在 WooCommerce Github 上发现了 "Add an additional argument to prevent 'woocommerce_order_status_changed' from being called" 个有用的相关主题。
我尝试使用 @kloon code snippet solution:
add_filter( 'woocommerce_before_order_object_save', 'prevent_order_status_change', 10, 2 );
function prevent_order_status_change( $order, $data_store ) {
$changes = $order->get_changes();
if ( isset( $changes['status'] ) ) {
$data = $order->get_data();
$from_status = $data['status'];
$to_status = $changes['status'];
// Do your logic here and update statuses with CRUD eg $order->set_status( 'completed' );
// Be sure to return the order object
}
return $order;
}
但是 $changes
变量总是一个空数组。
我尝试使用 wp_insert_post_data
Wordpress hook,但是当我设置时:
$data['post_status'] = "some status";
它只会阻止保存整个更新(整个新数据)。
这是我想运行的代码:
function($data){
if($data['order_status'] == 'comlpeted' && $data['new_order_status'] == 'proccessing'){
// prevent the order status from being changed
$data['new_order_status'] = $data['order_status'];
}
few more if conditions...
return $data;
}
感谢任何帮助或建议。
答案 0 :(得分:2)
基于 @kloon 代码片段,我已经能够获得旧订单状态和新订单状态。 然后我可以禁用任何状态更改从特定定义的订单状态到特定定义的订单状态。
使用以下代码,特定定义的用户角色无法将订单状态从“正在处理”更改为“待定保留”:
add_filter( 'woocommerce_before_order_object_save', 'prevent_order_status_change', 10, 2 );
function prevent_order_status_change( $order, $data_store ) {
// Below define the disallowed user roles
$disallowed_user_roles = array( 'shop_manager');
$changes = $order->get_changes();
if( ! empty($changes) && isset($changes['status']) ) {
$old_status = str_replace( 'wc-', '', get_post_status($order->get_id()) );
$new_status = $changes['status'];
$user = wp_get_current_user();
$matched_roles = array_intersect($user->roles, $disallowed_user_roles);
// Avoid status change from "processing" to "on-hold"
if ( 'processing' === $old_status && 'on-hold' === $new_status && ! empty($matched_roles) ) {
throw new Exception( sprintf( __("You are not allowed to change order from %s to %s.", "woocommerce" ), $old_status, $new_status ) );
return false;
}
}
return $order;
}
代码位于活动子主题(或活动主题)的functions.php 文件中。经测试有效。