Do not create orders with the auto-draft status
This commit is contained in:
parent
33db0a6c83
commit
b4448cfe94
1 changed files with 5 additions and 1 deletions
|
@ -371,7 +371,11 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
return;
|
||||
}
|
||||
|
||||
if ($update === true) {
|
||||
if ($order->get_status() == 'auto-draft') {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($update === true) {
|
||||
$this->orders->is_new = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue