Skip to content

Commit

Permalink
Fix: Fix controllo stati contratti omonimi al salvataggio
Browse files Browse the repository at this point in the history
  • Loading branch information
BeppeJQ committed Oct 23, 2024
1 parent c5504ba commit 7297b62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/stati_contratto/actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
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.'));
Expand Down

0 comments on commit 7297b62

Please sign in to comment.