Fix errore in apertura fatture
This commit is contained in:
parent
962a6f198b
commit
5758946045
|
@ -34,7 +34,7 @@ if (Interaction::isEnabled()) {
|
||||||
|
|
||||||
// Controllo se ci sono fatture in elaborazione da più di 7 giorni per le quali non ho ancora una ricevuta
|
// Controllo se ci sono fatture in elaborazione da più di 7 giorni per le quali non ho ancora una ricevuta
|
||||||
$data_limite = (new Carbon())->subDays(7);
|
$data_limite = (new Carbon())->subDays(7);
|
||||||
$fatture_generate = Fattura::vendite()
|
$fatture_generate = Fattura::vendita()
|
||||||
->where('codice_stato_fe', 'WAIT')
|
->where('codice_stato_fe', 'WAIT')
|
||||||
->where('data_stato_fe', '>=', $_SESSION['period_start'])
|
->where('data_stato_fe', '>=', $_SESSION['period_start'])
|
||||||
->where('data_stato_fe', '<', $data_limite)
|
->where('data_stato_fe', '<', $data_limite)
|
||||||
|
|
Loading…
Reference in New Issue