Fix minore

This commit is contained in:
Pek5892 2023-03-08 16:22:53 +01:00
parent 8a1a149f0f
commit b801651b9b
1 changed files with 5 additions and 3 deletions

View File

@ -97,9 +97,11 @@ switch (post('op')) {
}
flash()->info(tr('Prezzi di vendita aggiornati!'));
flash()->warning(tr('_NUM_ prezzi di vendita non aggiornati per coefficiente impostato!', [
'_NUM_' => $articoli_coeff,
]));
if ($articoli_coeff > 0) {
flash()->warning(tr('_NUM_ prezzi di vendita non aggiornati per coefficiente impostato!', [
'_NUM_' => $articoli_coeff,
]));
}
break;