mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-04-17 15:30:54 +00:00
fix default order status
This commit is contained in:
parent
647f7b3faf
commit
b61379cabc
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,7 @@ class RetailCRM extends Module
|
|||
if (array_key_exists($statusCode, $status) && !empty($status[$statusCode])) {
|
||||
$order['status'] = $status[$statusCode];
|
||||
} else {
|
||||
$order['status'] = array('new');
|
||||
$order['status'] = 'new';
|
||||
}
|
||||
|
||||
$customerCheck = $this->api->customersGet($customer['externalId']);
|
||||
|
|
Loading…
Add table
Reference in a new issue