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