Correzione minore stato FE
This commit is contained in:
parent
e5c1c4e0f7
commit
8a8092ed10
|
@ -42,7 +42,7 @@ class Interaction extends Services
|
||||||
$body = static::responseBody($response);
|
$body = static::responseBody($response);
|
||||||
|
|
||||||
// Aggiornamento dello stato
|
// Aggiornamento dello stato
|
||||||
if ($body['status'] == 200) {
|
if ($body['status'] == 200 || $body['status'] == 301) {
|
||||||
database()->update('co_documenti', [
|
database()->update('co_documenti', [
|
||||||
'codice_stato_fe' => 'WAIT',
|
'codice_stato_fe' => 'WAIT',
|
||||||
'data_stato_fe' => date('Y-m-d H:i:s'),
|
'data_stato_fe' => date('Y-m-d H:i:s'),
|
||||||
|
|
|
@ -50,7 +50,7 @@ class InvoiceHook extends Manager
|
||||||
|
|
||||||
$result = Interaction::sendInvoice($fattura->id);
|
$result = Interaction::sendInvoice($fattura->id);
|
||||||
|
|
||||||
if ($result['code'] == 200) {
|
if ($result['code'] == 200 || $result['code'] == 301) {
|
||||||
$fattura->hook_send = false;
|
$fattura->hook_send = false;
|
||||||
$fattura->save();
|
$fattura->save();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue