Fix visualizzazione fatture scadute parzialmente pagate

This commit is contained in:
MatteoPistorello 2022-06-15 15:01:06 +02:00
parent c9240009fe
commit df6445c38f
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ switch (post('op')) {
case 'fatture_scadute':
$id_anagrafica = post('id_anagrafica');
$stato1 = Stato::where('descrizione', 'Emessa')->first();
$stato2 = Stato::where('descrizione', 'Prazialmente pagato')->first();
$stato2 = Stato::where('descrizione', 'Parzialmente pagato')->first();
$fatture = Fattura::vendita()
->select('*', 'co_documenti.id AS id', 'co_documenti.data AS data')