Aggiunta link scadenza ai movimenti di primanota
This commit is contained in:
parent
74ca42ad6b
commit
698ae1dd13
|
@ -47,10 +47,16 @@ if (!empty($movimenti)) {
|
||||||
foreach ($movimenti as $movimento) {
|
foreach ($movimenti as $movimento) {
|
||||||
$documento = $modulo == 'Anagrafiche' ? Fattura::find($movimento['iddocumento']) : null;
|
$documento = $modulo == 'Anagrafiche' ? Fattura::find($movimento['iddocumento']) : null;
|
||||||
$scalare += $movimento['totale'];
|
$scalare += $movimento['totale'];
|
||||||
|
$descrizione = $movimento['conto2'].'.'.$movimento['conto3'].' - '.$movimento['descrizione'];
|
||||||
|
|
||||||
|
if( $movimento['primanota']==1 ){
|
||||||
|
$descrizione = Modules::link('Scadenzario',$movimento['id_scadenza'],$descrizione);
|
||||||
|
}
|
||||||
|
|
||||||
echo '
|
echo '
|
||||||
<tr>
|
<tr>
|
||||||
<td class="text-center">'.Translator::dateToLocale($movimento['data']).'</td>
|
<td class="text-center">'.Translator::dateToLocale($movimento['data']).'</td>
|
||||||
<td>'.$movimento['conto2'].'.'.$movimento['conto3'].' - '.$movimento['descrizione'].'<small class="pull-right text-right text-muted" style="font-size:8pt;">'.($documento ? $documento->getReference() : '').'</small></td>
|
<td>'.$descrizione.'<small class="pull-right text-right text-muted" style="font-size:8pt;">'.($documento ? $documento->getReference() : '').'</small></td>
|
||||||
<td class="text-right">'.($movimento['totale']>0 ? moneyFormat(abs($movimento['totale'])) : "").'</td>
|
<td class="text-right">'.($movimento['totale']>0 ? moneyFormat(abs($movimento['totale'])) : "").'</td>
|
||||||
<td class="text-right">'.($movimento['totale']<0 ? moneyFormat(abs($movimento['totale'])) : "").'</td>
|
<td class="text-right">'.($movimento['totale']<0 ? moneyFormat(abs($movimento['totale'])) : "").'</td>
|
||||||
<td class="text-right">'.moneyFormat($scalare).'</td>
|
<td class="text-right">'.moneyFormat($scalare).'</td>
|
||||||
|
|
Loading…
Reference in New Issue