Fix: Fix controllo stati contratti omonimi al salvataggio
This commit is contained in:
parent
c5504bae97
commit
7297b62d37
|
@ -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.'));
|
||||
|
|
Loading…
Reference in New Issue