Aggiunto avviso nel caso di righe con quantità a 0.
This commit is contained in:
parent
f1f3e553a7
commit
4633113022
|
@ -68,6 +68,21 @@ if ($dir == 'entrata') {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
$righe = $ddt->getRighe();
|
||||
$righe_vuote = false;
|
||||
foreach ($righe as $riga) {
|
||||
if ($riga->qta == 0) {
|
||||
$righe_vuote = true;
|
||||
}
|
||||
}
|
||||
if ($righe_vuote) {
|
||||
echo '
|
||||
<div class="alert alert-warning" id="righe-vuote">
|
||||
<i class="fa fa-warning"></i> '.tr("Nel ddt sono presenti delle righe con quantità a 0.").'</b>
|
||||
</div>';
|
||||
}
|
||||
|
||||
?>
|
||||
<form action="" method="post" id="edit-form">
|
||||
<input type="hidden" name="backto" value="record-edit">
|
||||
|
|
|
@ -72,6 +72,12 @@ foreach ($righe as $riga) {
|
|||
$mancanti = 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Imposto sfondo rosso alle righe con quantità a 0
|
||||
if ($riga->qta == 0) {
|
||||
$extra = 'class="danger"';
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">
|
||||
<td class="text-center">';
|
||||
|
|
|
@ -166,12 +166,12 @@ if ($dir == 'entrata') {
|
|||
$numero_previsto = verifica_numero_fattura($fattura);
|
||||
if (!empty($numero_previsto)) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i> '.tr("E' assente una fattura di vendita di numero _NUM_ in data precedente o corrispondente a _DATE_: si potrebbero verificare dei problemi con la numerazione corrente delle fatture", [
|
||||
'_DATE_' => dateFormat($fattura->data),
|
||||
'_NUM_' => '"'.$numero_previsto.'"',
|
||||
]).'.</b>
|
||||
</div>';
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i> '.tr("E' assente una fattura di vendita di numero _NUM_ in data precedente o corrispondente a _DATE_: si potrebbero verificare dei problemi con la numerazione corrente delle fatture", [
|
||||
'_DATE_' => dateFormat($fattura->data),
|
||||
'_NUM_' => '"'.$numero_previsto.'"',
|
||||
]).'.</b>
|
||||
</div>';
|
||||
}
|
||||
|
||||
// Verifica la data dell'intervento rispetto alla data della fattura
|
||||
|
@ -191,12 +191,27 @@ if ($dir == 'entrata') {
|
|||
|
||||
if ($fatturazione_futura) {
|
||||
echo '
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i> '.tr("Stai fatturando un'attività futura rispetto alla data di fatturazione.").'</b>
|
||||
</div>';
|
||||
<div class="alert alert-warning">
|
||||
<i class="fa fa-warning"></i> '.tr("Stai fatturando un'attività futura rispetto alla data di fatturazione.").'</b>
|
||||
</div>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$righe = $fattura->getRighe();
|
||||
$righe_vuote = false;
|
||||
foreach ($righe as $riga) {
|
||||
if ($riga->qta == 0) {
|
||||
$righe_vuote = true;
|
||||
}
|
||||
}
|
||||
if ($righe_vuote) {
|
||||
echo '
|
||||
<div class="alert alert-warning" id="righe-vuote">
|
||||
<i class="fa fa-warning"></i> '.tr("Nel documento sono presenti delle righe con quantità a 0.").'</b>
|
||||
</div>';
|
||||
}
|
||||
|
||||
?>
|
||||
<form action="" method="post" id="edit-form">
|
||||
<input type="hidden" name="backto" value="record-edit">
|
||||
|
|
|
@ -75,6 +75,11 @@ foreach ($righe as $riga) {
|
|||
}
|
||||
}
|
||||
|
||||
// Imposto sfondo rosso alle righe con quantità a 0
|
||||
if ($riga->qta == 0) {
|
||||
$extra = 'class="danger"';
|
||||
}
|
||||
|
||||
$extra_riga = '';
|
||||
if (!$riga->isDescrizione()) {
|
||||
// Informazioni su CIG, CUP, ...
|
||||
|
|
|
@ -29,6 +29,20 @@ if ($module['name'] == 'Ordini cliente') {
|
|||
$dir = 'uscita';
|
||||
}
|
||||
|
||||
$righe = $ordine->getRighe();
|
||||
$righe_vuote = false;
|
||||
foreach ($righe as $riga) {
|
||||
if ($riga->qta == 0) {
|
||||
$righe_vuote = true;
|
||||
}
|
||||
}
|
||||
if ($righe_vuote) {
|
||||
echo '
|
||||
<div class="alert alert-warning" id="righe-vuote">
|
||||
<i class="fa fa-warning"></i> '.tr("Nel documento sono presenti delle righe con quantità a 0.").'</b>
|
||||
</div>';
|
||||
}
|
||||
|
||||
?><form action="" method="post" id="edit-form">
|
||||
<input type="hidden" name="backto" value="record-edit">
|
||||
<input type="hidden" name="op" value="update">
|
||||
|
|
|
@ -78,8 +78,13 @@ foreach ($righe as $riga) {
|
|||
}
|
||||
}
|
||||
|
||||
// Imposto sfondo rosso alle righe con quantità a 0
|
||||
if ($riga->qta == 0) {
|
||||
$extra = 'class="danger"';
|
||||
}
|
||||
|
||||
echo '
|
||||
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'">
|
||||
<tr data-id="'.$riga->id.'" data-type="'.get_class($riga).'" '.$extra.'>
|
||||
<td class="text-center">';
|
||||
if (!$block_edit) {
|
||||
echo '
|
||||
|
|
Loading…
Reference in New Issue