diff --git a/modules/stati_contratto/actions.php b/modules/stati_contratto/actions.php index 6a049e150..c395f0817 100755 --- a/modules/stati_contratto/actions.php +++ b/modules/stati_contratto/actions.php @@ -24,7 +24,7 @@ use Modules\Contratti\Stato; switch (post('op')) { case 'update': $descrizione = post('descrizione'); - $stato_new = Stato::where('name', $descrizione)->first(); + $stato_new = Stato::where('name', $descrizione)->where('id','!=', $id_record)->first(); if ($stato_new) { flash()->error(tr('Questo nome è già stato utilizzato per un altro stato dei contratti.'));