use of it.cnr.contab.chiusura00.ejb.RicercaDocContComponentSession in project sigla-main by consiglionazionaledellericerche.
the class RiportoEsSuccessivoBP method initializeSelection.
/**
* inizializza il pg_call del protocollo VSX in modo da consentire l'inserimento dei doc. contabili
* selezionat dall'utente nella tabella VSX_CHIUSURA
*/
public void initializeSelection(it.cnr.jada.action.ActionContext context) throws it.cnr.jada.action.BusinessProcessException {
try {
V_obb_acc_xxxBulk doc = ((RicercaDocContComponentSession) createComponentSession()).initializeSelectionPerRiportaAvanti(context.getUserContext(), (V_obb_acc_xxxBulk) getModel());
setModel(context, doc);
} catch (Exception e) {
throw handleException(e);
}
}
use of it.cnr.contab.chiusura00.ejb.RicercaDocContComponentSession in project sigla-main by consiglionazionaledellericerche.
the class RiportoEsSuccessivoBP method cercaDocDaRiportare.
/**
* Ricerca di documenti contabili idonei al riporto avanti
*
* @param context L'ActionContext della richiesta
* @param model
* @return
* @throws BusinessProcessException
*/
public it.cnr.jada.util.RemoteIterator cercaDocDaRiportare(ActionContext context, V_obb_acc_xxxBulk model) throws it.cnr.jada.action.BusinessProcessException {
try {
validaRibaltamento(context);
RicercaDocContComponentSession sessione = (RicercaDocContComponentSession) createComponentSession();
return it.cnr.jada.util.ejb.EJBCommonServices.openRemoteIterator(context, sessione.cercaPerRiportaAvanti(context.getUserContext(), model));
} catch (Exception e) {
throw handleException(e);
}
}
use of it.cnr.contab.chiusura00.ejb.RicercaDocContComponentSession in project sigla-main by consiglionazionaledellericerche.
the class TrasmissioneFatture method notificaFatturaAttivaAvvenutaTrasmissioneNonRecapitata.
public void notificaFatturaAttivaAvvenutaTrasmissioneNonRecapitata(UserContext userContext, String nomeFile, DataHandler data) throws ComponentException {
RicercaDocContComponentSession docComponent = recuperoComponentRicercaDocCont();
FatturaElettronicaAttivaComponentSession component = recuperoComponentFatturaElettronicaAttiva();
try {
JAXBElement<INonRecapitabile> file = (JAXBElement<INonRecapitabile>) getJAXBElement(data);
INonRecapitabile notifica = file.getValue();
logger.info("Fatture Elettroniche: Attive: Trasmissione non recapitata. MessageId:" + notifica.getMessageId());
String codiceSDI = String.valueOf(notifica.getIdentificativoSdI());
Fattura_attivaBulk fattura = recuperoFatturaDaCodiceInvioSDI(userContext, codiceSDI);
if (fattura != null && fattura.getStatoInvioSdi() != null && fattura.getStatoInvioSdi().equals(Fattura_attivaBulk.FATT_ELETT_NON_RECAPITABILE)) {
logger.info("Fatture Elettroniche: Attive: Fattura già elaborata " + codiceSDI);
} else {
String nomeFileP7m = notifica.getNomeFile();
fattura = recuperoFatturaDaNomeFile(userContext, nomeFileP7m);
if (fattura != null) {
if ((CNRUserContext.getEsercizio(userContext).compareTo(fattura.getEsercizio()) == 0) || (docComponent.isRibaltato(userContext, fattura.getCd_cds_origine(), fattura.getEsercizio()) && CNRUserContext.getEsercizio(userContext).compareTo(fattura.getEsercizio()) > 0)) {
salvaFileSuDocumentale(data, nomeFile, fattura, StorageDocAmmAspect.SIGLA_FATTURE_ATTACHMENT_TRASMISSIONE_FATTURA);
try {
component.aggiornaFatturaTrasmissioneNonRecapitataSDI(userContext, fattura, codiceSDI, notifica.getNote());
logger.info("Fatture Elettroniche: Attive: aggiornamento Fattura con trasmissione non recapitata con nome file " + nomeFileP7m);
if (fattura instanceof Fattura_attiva_IBulk) {
Fattura_attiva_IBulk fatturaAttiva = (Fattura_attiva_IBulk) fattura;
if (fatturaAttiva.getNotaCreditoAutomaticaGenerata() != null) {
component.gestioneInvioMailNonRecapitabilita(userContext, fattura);
try {
SpringUtil.getBean("documentiCollegatiDocAmmService", DocumentiCollegatiDocAmmService.class).gestioneAllegatiPerFatturazioneElettronica(userContext, fatturaAttiva.getNotaCreditoAutomaticaGenerata());
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione della stampa della mancata consegna della fattura con nome file " + nomeFileP7m + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Mancata Consegna. Nome file " + nomeFileP7m, sw.toString());
}
}
}
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione della mancata consegna della fattura con nome file " + nomeFileP7m + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Trasmissione non recapitata. Nome file " + nomeFileP7m, sw.toString());
}
}
} else {
logger.warn("Fatture Elettroniche: Attive: Per il nome del file inviato indicato nel file dell'e-mail non corrisponde nessuna fattura. Trasmissione non recapitata. Nome File " + nomeFileP7m);
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Per il nome del file inviato indicato nel file dell'e-mail non corrisponde nessuna fattura", "Trasmissione non recapitata. Nome File " + nomeFileP7m);
}
}
} catch (Exception e) {
throw new ComponentException(e);
}
}
use of it.cnr.contab.chiusura00.ejb.RicercaDocContComponentSession in project sigla-main by consiglionazionaledellericerche.
the class TrasmissioneFatture method notificaFatturaAttivaEsito.
public void notificaFatturaAttivaEsito(UserContext userContext, String nomeFile, DataHandler data) throws ComponentException {
RicercaDocContComponentSession docComponent = recuperoComponentRicercaDocCont();
FatturaElettronicaAttivaComponentSession component = recuperoComponentFatturaElettronicaAttiva();
try {
JAXBElement<NotificaEsitoType> file = (JAXBElement<NotificaEsitoType>) getJAXBElement(data);
NotificaEsitoType notifica = file.getValue();
String identificativoSdi = String.valueOf(notifica.getIdentificativoSdI());
logger.info("Fatture Elettroniche: Attive: Esito. MessageId:" + notifica.getMessageId() + ". Identificativo SDI: " + identificativoSdi);
Fattura_attivaBulk fattura = recuperoFatturaDaCodiceInvioSDI(userContext, identificativoSdi);
if (fattura != null) {
if (!StringUtils.isEmpty(fattura.getStatoInvioSdi())) {
if (fattura.getStatoInvioSdi().equals(Fattura_attivaBulk.FATT_ELETT_ACCETTATA_DESTINATARIO) || fattura.getStatoInvioSdi().equals(Fattura_attivaBulk.FATT_ELETT_RIFIUTATA_DESTINATARIO)) {
logger.info("Fatture Elettroniche: Attive: Fattura già elaborata ");
} else if (fattura.getStatoInvioSdi().equals(Fattura_attivaBulk.FATT_ELETT_CONSEGNATA_DESTINATARIO)) {
if (esitoAccettato(notifica)) {
salvaFileSuDocumentale(data, nomeFile, fattura, StorageDocAmmAspect.SIGLA_FATTURE_ATTACHMENT_ESITO_ACCETTATO);
try {
component.aggiornaFatturaEsitoAccettatoSDI(userContext, fattura);
logger.info("Fatture Elettroniche: Attive: aggiornamento Fattura accettata con id SDI " + identificativoSdi);
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione della Fattura accettata con id SDI " + identificativoSdi + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Esito Accettato. Id SDI " + identificativoSdi, sw.toString());
}
} else {
if ((CNRUserContext.getEsercizio(userContext).compareTo(fattura.getEsercizio()) == 0) || (docComponent.isRibaltato(userContext, fattura.getCd_cds_origine(), fattura.getEsercizio()) && CNRUserContext.getEsercizio(userContext).compareTo(fattura.getEsercizio()) > 0)) {
salvaFileSuDocumentale(data, nomeFile, fattura, StorageDocAmmAspect.SIGLA_FATTURE_ATTACHMENT_ESITO_RIFIUTATO);
String rifiuto = recuperoMotivoRifiuto(notifica);
try {
fattura = component.aggiornaFatturaRifiutataDestinatarioSDI(userContext, fattura, rifiuto);
logger.info("Fatture Elettroniche: Attive: aggiornamento Fattura rifiutata con id SDI " + identificativoSdi);
if (fattura instanceof Fattura_attiva_IBulk) {
Fattura_attiva_IBulk fatturaAttiva = (Fattura_attiva_IBulk) fattura;
if (fatturaAttiva.getNotaCreditoAutomaticaGenerata() != null) {
try {
SpringUtil.getBean("documentiCollegatiDocAmmService", DocumentiCollegatiDocAmmService.class).gestioneAllegatiPerFatturazioneElettronica(userContext, fatturaAttiva.getNotaCreditoAutomaticaGenerata());
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione della stampa della Fattura rifiutata con id SDI " + identificativoSdi + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Esito Rifiutato. Id SDI " + identificativoSdi, sw.toString());
}
}
}
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione della Fattura rifiutata con id SDI " + identificativoSdi + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Esito Rifiutato. Id SDI " + identificativoSdi, sw.toString());
}
}
}
// } else {
// logger.warn("Fatture Elettroniche: Attive: Stato fattura vuoto non previsto per la notifica esito per la fattura " + identificativoSdi);
}
// } else {
// logger.warn("Fatture Elettroniche: Attive: Stato fattura " + fattura.getStatoInvioSdi() + " non previsto per la notifica esito per la fattura " + identificativoSdi);
}
} else {
logger.warn("Fatture Elettroniche: Attive: Per il nome dell'identificativo SDI indicato nel file dell'e-mail non corrisponde nessuna fattura." + identificativoSdi);
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Per il nome del file inviato indicato nel file dell'e-mail non corrisponde nessuna fattura", "Notifica Esito. Id SDI " + identificativoSdi);
}
} catch (Exception e) {
throw new ComponentException(e);
}
}
use of it.cnr.contab.chiusura00.ejb.RicercaDocContComponentSession in project sigla-main by consiglionazionaledellericerche.
the class TrasmissioneFatture method notificaFatturaAttivaScarto.
public void notificaFatturaAttivaScarto(UserContext userContext, String nomeFile, DataHandler data) throws ComponentException {
FatturaElettronicaAttivaComponentSession component = recuperoComponentFatturaElettronicaAttiva();
RicercaDocContComponentSession docComponent = recuperoComponentRicercaDocCont();
try {
JAXBElement<IScarto> file = (JAXBElement<IScarto>) getJAXBElement(data);
IScarto notifica = file.getValue();
logger.info("Fatture Elettroniche: Attive: Notifica Scarto. MessageId:" + notifica.getMessageId());
String codiceSDI = notifica.getIdentificativoSdI();
Fattura_attivaBulk fattura = recuperoFatturaDaCodiceInvioSDI(userContext, codiceSDI);
if (fattura != null) {
logger.info("Fatture Elettroniche: Attive: Fattura già elaborata " + codiceSDI);
} else {
String nomeFileP7m = recuperoNomeFileP7m(notifica);
fattura = recuperoFatturaDaNomeFile(userContext, nomeFileP7m);
if (fattura != null) {
if ((CNRUserContext.getEsercizio(userContext).compareTo(fattura.getEsercizio()) == 0) || (docComponent.isRibaltato(userContext, fattura.getCd_cds_origine(), fattura.getEsercizio()) && CNRUserContext.getEsercizio(userContext).compareTo(fattura.getEsercizio()) > 0)) {
salvaFileSuDocumentale(data, nomeFile, fattura, StorageDocAmmAspect.SIGLA_FATTURE_ATTACHMENT_SCARTO);
StringBuffer errore = estraiErrore(notifica);
try {
fattura = component.aggiornaFatturaScartoSDI(userContext, fattura, codiceSDI, errore.toString());
logger.info("Fatture Elettroniche: Attive: aggiornamento Fattura scartata con nomeFile " + nomeFileP7m);
if (fattura instanceof Fattura_attiva_IBulk) {
Fattura_attiva_IBulk fatturaAttiva = (Fattura_attiva_IBulk) fattura;
if (fatturaAttiva.getNotaCreditoAutomaticaGenerata() != null) {
try {
SpringUtil.getBean("documentiCollegatiDocAmmService", DocumentiCollegatiDocAmmService.class).gestioneAllegatiPerFatturazioneElettronica(userContext, fatturaAttiva.getNotaCreditoAutomaticaGenerata());
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione della stampa dello scarto della fattura con nome file " + nomeFileP7m + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Notifica Scarto. Nome file " + nomeFileP7m, sw.toString());
}
}
}
} catch (Exception ex) {
logger.error("Fatture Elettroniche: Attive: MessageId:" + notifica.getMessageId() + ". Errore nell'elaborazione dello scarto della fattura con nome file " + nomeFileP7m + ". Errore:" + ex.getMessage() == null ? (ex.getCause() == null ? "" : ex.getCause().toString()) : ex.getMessage());
java.io.StringWriter sw = new java.io.StringWriter();
ex.printStackTrace(new java.io.PrintWriter(sw));
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Notifica Scarto. Nome file " + nomeFileP7m, sw.toString());
}
}
} else {
logger.warn("Fatture Elettroniche: Attive: Per il nome del file inviato indicato nel file dell'e-mail non corrisponde nessuna fattura." + nomeFileP7m);
SendMail.sendErrorMail("Fatture Elettroniche: Attive: Per il nome del file inviato indicato nel file dell'e-mail non corrisponde nessuna fattura", "Scarto. Nome File " + nomeFileP7m);
}
}
} catch (Exception e) {
throw new ComponentException(e);
}
}
Aggregations