try {
GruppoDatiPartita gdp = contabilitaFacade.leggiGruppoDatiPartita(newCodicePartita);
if (gdp != null)
cambiaCodicePartita(gdp);
else {
CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean())
.getOperazioniGiornaliereMessages());
alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgCodicePartitaNonValido"));
alertMsgPopup.openPopup();
}
} catch (ContabilitaException e) {
log.error("errore nella ricerca del codice partita:[" + newCodicePartita + "]", e);
CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean())
.getOperazioniGiornaliereMessages());
alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgCodicePartitaNonValido"));
alertMsgPopup.openPopup();
}
BackingBeanUtility.refreshCurrentPage();