1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-10 06:35:54 +01:00

fix: bulk fatturazione ddt

This commit is contained in:
MatteoPistorello 2024-12-20 09:40:47 +01:00
parent a36a2d015d
commit 4cc29340b2

View File

@ -89,12 +89,12 @@ switch (post('op')) {
$fattura = Fattura::where('idanagrafica', $id_anagrafica)
->where('idstatodocumento', $stato_documenti_accodabili->id)
->where('idtipodocumento', $tipo_documento->id)
->where('idsede_destinazione', $id_sede)
->first();
} else {
$fattura = Fattura::where('idanagrafica', $id_anagrafica)
->where('idstatodocumento', $stato_documenti_accodabili->id)
->where('idtipodocumento', $tipo_standard->id)
->where('idsede_destinazione', $id_sede)
->first();
}