Search code examples
phpprestashop-1.6

How change Prestashop Order status with php in validate order


How change Prestashop Order status with php in validate order i'm


Solution

  • $history = new OrderHistory();
    $history->id_order = (int)$order->id;
    $history->changeIdOrderState(27, (int)($order->id));