Для обновления статуса заказа вы будете использовать WC_Order
метод update_status()
.
Я немного пересмотрел ваш код. Попробуйте следующее:
function get_order_ids_to_check(){
global $wpdb;
return $wpdb->get_col( "
SELECT p.ID
FROM {$wpdb->prefix}posts as p
WHERE p.post_type LIKE 'shop_order'
AND p.post_status IN ('wc-on-hold','wc-processing')
AND UNIX_TIMESTAMP(p.post_date) >= (UNIX_TIMESTAMP(NOW()) - 86400)
" );
}
function send_daily_orders_to_delivery(){
// Loop through each order Ids
foreach( get_order_ids_to_check() as $order_id ){
// Get an instance of the WC_Order object
$order = wc_get_order($order_id);
$secret = ''; // <== Secret key to be set
$data = '&secret='.$secret.'&order_id='.get_post_meta( $order_id, 'delivery_order_id', true );
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://app.example.com/api/index.php?get_status");
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$result = curl_exec($ch);
curl_close($ch);
$decoded = (array) json_decode($result);
// Update order status
if( isset($decoded['result']) && $decoded['result'] == 'success' && isset($decoded['status']) && ! empty($decoded['status']) ){
if( $decoded['status'] == "Order Completed" )
$order->update_status( 'completed' );
elseif( $decoded['status'] == "Order Cancelled" )
$order->update_status( 'cancelled' );
}
}
}
Тогда вы будете использовать:
send_daily_orders_to_delivery();
Внутри функции планировщика или в любом хуке действий по вашему выбору.
Код помещается в файл function.php активной дочерней темы (или активной темы). Это должно работать.