diff --git a/templates/provvigione/top.php b/templates/provvigione/top.php index 56e14fdf6..aec507c1f 100644 --- a/templates/provvigione/top.php +++ b/templates/provvigione/top.php @@ -24,6 +24,13 @@ $agente = Anagrafica::where([ ['idanagrafica', '=', $id_record], ])->first(); +if(get('is_parz_pagata')=='true'){ + $text[] = "'Parzialmente pagato'"; +} +if(get('is_emessa')=='true'){ + $text[] = "'Emessa'"; +} + echo '
+ '.tr("_TEXT_", + [ + "_TEXT_" => (empty($text) ? 'Solo fatture con stato \'Pagato\'' : 'Include fatture con stato \'Pagato\', '.implode(', ', $text)), + ]).' +