1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-27 16:23:19 +01:00

Fix creazione attività da documento con descrizione

This commit is contained in:
MatteoPistorello 2021-05-14 16:16:09 +02:00
parent 8acc886a63
commit cae01f1092

View File

@ -34,7 +34,12 @@ $final_module = Modules::get($name);
// IVA predefinita
$id_iva = $id_iva ?: setting('Iva predefinita');
$righe = $documento->getRighe()->where('qta_rimanente', '>', 0);
if($final_module['name']=='Interventi'){
$righe = $documento->getRighe()->where('qta_rimanente', '>', 0)->where('is_descrizione', '=', 0);
}else{
$righe = $documento->getRighe()->where('qta_rimanente', '>', 0);
}
if (empty($righe)) {
echo '
<p>'.tr('Non ci sono elementi da evadere').'...</p>';