mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-23 22:03:18 +01:00
Fix avviso eliminazione righe
This commit is contained in:
parent
341e85869c
commit
fc0d100d7b
@ -285,7 +285,11 @@ switch (post('op')) {
|
||||
$riga = null;
|
||||
}
|
||||
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
if (count($id_righe) == 1) {
|
||||
flash()->info(tr('Riga eliminata!'));
|
||||
} else {
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
@ -392,7 +392,12 @@ switch (filter('op')) {
|
||||
}
|
||||
|
||||
ricalcola_costiagg_ddt($id_record);
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
|
||||
if (count($id_righe) == 1) {
|
||||
flash()->info(tr('Riga eliminata!'));
|
||||
} else {
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
@ -48,22 +48,20 @@ $stato_fe = $dbo->fetchOne('SELECT codice_stato_fe FROM co_documenti WHERE id =
|
||||
$ops = ['update', 'add_intervento', 'manage_documento_fe', 'manage_riga_fe', 'manage_articolo', 'manage_sconto', 'manage_riga', 'manage_descrizione', 'unlink_intervento', 'delete_riga', 'copy_riga', 'add_serial', 'add_articolo', 'edit-price'];
|
||||
|
||||
if ($dir === 'entrata' && in_array($stato_fe['codice_stato_fe'], ['WAIT', 'RC', 'MC', 'QUEUE', 'DT', 'EC01', 'NE']) && Interaction::isEnabled() && in_array($op, $ops)) {
|
||||
|
||||
//Permetto sempre la modifica delle note aggiuntive e/o della data di competenza della fattura di vendita
|
||||
if ($op == 'update' && ($fattura->note_aggiuntive != post('note_aggiuntive') || $fattura->data_competenza != post('data_competenza'))){
|
||||
if ($fattura->note_aggiuntive != post('note_aggiuntive')){
|
||||
if ($op == 'update' && ($fattura->note_aggiuntive != post('note_aggiuntive') || $fattura->data_competenza != post('data_competenza'))) {
|
||||
if ($fattura->note_aggiuntive != post('note_aggiuntive')) {
|
||||
$fattura->note_aggiuntive = post('note_aggiuntive');
|
||||
$fattura->save();
|
||||
flash()->info(tr('Note interne modificate correttamente.'));
|
||||
}
|
||||
|
||||
if ($fattura->data_competenza != post('data_competenza')){
|
||||
if ($fattura->data_competenza != post('data_competenza')) {
|
||||
$fattura->data_competenza = post('data_competenza');
|
||||
$fattura->save();
|
||||
flash()->info(tr('Data competenza modificata correttamente.'));
|
||||
}
|
||||
|
||||
}else{
|
||||
} else {
|
||||
flash()->warning(tr('La fattura numero _NUM_ è già stata inviata allo SDI, non è possibile effettuare modifiche.', [
|
||||
'_NUM_' => $fattura->numero_esterno,
|
||||
]));
|
||||
@ -674,6 +672,11 @@ switch ($op) {
|
||||
}
|
||||
|
||||
$riga = null;
|
||||
}
|
||||
|
||||
if (count($id_righe) == 1) {
|
||||
flash()->info(tr('Riga eliminata!'));
|
||||
} else {
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
}
|
||||
|
||||
|
@ -440,7 +440,11 @@ switch (post('op')) {
|
||||
$riga = null;
|
||||
}
|
||||
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
if (count($id_righe) == 1) {
|
||||
flash()->info(tr('Riga eliminata!'));
|
||||
} else {
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
@ -342,7 +342,11 @@ switch (post('op')) {
|
||||
|
||||
ricalcola_costiagg_ordine($id_record);
|
||||
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
if (count($id_righe) == 1) {
|
||||
flash()->info(tr('Riga eliminata!'));
|
||||
} else {
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
@ -349,7 +349,11 @@ switch (post('op')) {
|
||||
$riga = null;
|
||||
}
|
||||
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
if (count($id_righe) == 1) {
|
||||
flash()->info(tr('Riga eliminata!'));
|
||||
} else {
|
||||
flash()->info(tr('Righe eliminate!'));
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user