mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-14 16:36:51 +01:00
Aggiunto text danger per righe a 0 in fattura di vendita
This commit is contained in:
parent
e4200a6ba5
commit
06b958b120
@ -163,9 +163,14 @@ foreach ($righe as $riga) {
|
||||
</td>';
|
||||
|
||||
// Prezzi unitari
|
||||
if (empty($riga->prezzo_unitario_corrente) && $dir == 'entrata') {
|
||||
$price_danger = 'text-danger';
|
||||
} else {
|
||||
$price_danger = '';
|
||||
}
|
||||
echo '
|
||||
<td class="text-right">
|
||||
'.moneyFormat($riga->prezzo_unitario_corrente);
|
||||
<span class="'.$price_danger.'">'.moneyFormat($riga->prezzo_unitario_corrente).'</span>';
|
||||
|
||||
if ($dir == 'entrata' && $riga->costo_unitario != 0) {
|
||||
echo '
|
||||
|
Loading…
Reference in New Issue
Block a user