Skip to content

Commit

Permalink
bug #7357-#7359 esercizio: inventario: eliminato erroneo controllo di…
Browse files Browse the repository at this point in the history
… validità della collocazione quando si crea l'inventario.
  • Loading branch information
IstitutoCentraleCatalogoUnicoBiblio committed Feb 20, 2020
1 parent d83e46e commit c6fe53e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ERROR_ID_TEMPLATE=<p class="messaggioErrore">(error ID: {0})</p>
ERROR_ID_TEMPLATE=<p class="messaggioErrore">(incident ID: {0})</p>

ERROR_GENERIC=<p class="messaggioErrore">Errore non gestito. Contattare l'assistenza.</p>
UNRECOVERABLE=<p class="messaggioErrore">Errore non gestito. Contattare l'assistenza.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,9 @@ public void validaRegistroIngresso (StampaRegistroVO rec)
public void validaCollocazione (CollocazioneVO rec)
throws ValidationException {
try {
//almaviva5_20200220 #7357 #7359
if (rec == null)
return;

if (rec.getCodPolo() == null || (rec.getCodPolo()!=null && rec.getCodPolo().trim().length()==0)){
throw new ValidationException("validaCollCodPoloObbligatorio", ValidationException.errore);
Expand Down

0 comments on commit c6fe53e

Please sign in to comment.