客户支付了一次,但有时商品在订单中显示两次,这是随机发生的。通常每周两次。
在这种情况下,我需要一个函数来在发生这种情况时更改订单的状态(例如当订单至少具有重复的商品名称时)。
这是我的代码尝试:
add_filter( 'woocommerce_cod_process_payment_order_status', 'prefix_filter_wc_complete_order_status', 10, 3 );
add_filter( 'woocommerce_payment_complete_order_status', 'prefix_filter_wc_complete_order_status', 10, 3 );
function prefix_filter_wc_complete_order_status( $status, $order_id, $order ) {
if( ! $order_id ) return;
$order = wc_get_order( $order_id );
$all_products_id = array();
foreach ($order->get_items() as $item_key => $item ){
$item_name = $item->get_name();
$all_products_id[] = $item_name;
}
$o_num = count($all_products_id);
if($o_num == 1){
return 'processing';
}else{
$standard = 0;
for($i=1;$i<$o_num;$i++){
if($all_products_id[0] == $all_products_id[i]){
$standard++;
}
}
if($standard > 0){
return 'on-hold';
}else{
return 'processing';
}
}
当我测试它时,我收到此错误:SyntaxError: Unexpected token < in JSON at position 18
任何建议将不胜感激。
森林海