Search in sources :

Example 1 with BusinessServiceException

use of sic.service.BusinessServiceException in project sic by belluccifranco.

the class ProductoServiceImpl method eliminarMultiplesProductos.

@Override
@Transactional
public void eliminarMultiplesProductos(long[] idProducto) {
    if (Validator.tieneDuplicados(idProducto)) {
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_error_ids_duplicados"));
    }
    List<Producto> productos = new ArrayList<>();
    for (Long i : idProducto) {
        Producto producto = this.getProductoPorId(i);
        if (producto == null) {
            throw new EntityNotFoundException(ResourceBundle.getBundle("Mensajes").getString("mensaje_producto_no_existente"));
        }
        producto.setEliminado(true);
        productos.add(producto);
    }
    productoRepository.save(productos);
}
Also used : BusinessServiceException(sic.service.BusinessServiceException) QProducto(sic.modelo.QProducto) Producto(sic.modelo.Producto) ArrayList(java.util.ArrayList) EntityNotFoundException(javax.persistence.EntityNotFoundException) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with BusinessServiceException

use of sic.service.BusinessServiceException in project sic by belluccifranco.

the class AfipServiceImpl method getAfipWSAACredencial.

@Override
public AfipWSAACredencial getAfipWSAACredencial(String afipNombreServicio, Empresa empresa) {
    AfipWSAACredencial afipCredencial = new AfipWSAACredencial();
    String loginTicketResponse = "";
    byte[] p12file = configuracionDelSistemaService.getConfiguracionDelSistemaPorEmpresa(empresa).getCertificadoAfip();
    if (p12file.length == 0) {
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_cds_certificado_vacio"));
    }
    String p12signer = configuracionDelSistemaService.getConfiguracionDelSistemaPorEmpresa(empresa).getFirmanteCertificadoAfip();
    String p12pass = configuracionDelSistemaService.getConfiguracionDelSistemaPorEmpresa(empresa).getPasswordCertificadoAfip();
    //siempre devuelve por 12hs
    long ticketTime = 3600000L;
    byte[] loginTicketRequest_xml_cms = afipWebServiceSOAPClient.crearCMS(p12file, p12pass, p12signer, afipNombreServicio, ticketTime);
    LoginCms loginCms = new LoginCms();
    loginCms.setIn0(Base64.getEncoder().encodeToString(loginTicketRequest_xml_cms));
    try {
        loginTicketResponse = afipWebServiceSOAPClient.loginCMS(loginCms);
    } catch (WebServiceClientException ex) {
        LOGGER.error(ex.getMessage());
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_token_wsaa_error"));
    }
    try {
        Reader tokenReader = new StringReader(loginTicketResponse);
        Document tokenDoc = new SAXReader(false).read(tokenReader);
        afipCredencial.setToken(tokenDoc.valueOf("/loginTicketResponse/credentials/token"));
        afipCredencial.setSign(tokenDoc.valueOf("/loginTicketResponse/credentials/sign"));
        afipCredencial.setCuit(empresa.getCuip());
    } catch (DocumentException ex) {
        LOGGER.error(ex.getMessage());
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_error_procesando_xml"));
    }
    return afipCredencial;
}
Also used : AfipWSAACredencial(sic.modelo.AfipWSAACredencial) BusinessServiceException(sic.service.BusinessServiceException) WebServiceClientException(org.springframework.ws.client.WebServiceClientException) SAXReader(org.dom4j.io.SAXReader) DocumentException(org.dom4j.DocumentException) StringReader(java.io.StringReader) SAXReader(org.dom4j.io.SAXReader) Reader(java.io.Reader) StringReader(java.io.StringReader) LoginCms(afip.wsaa.wsdl.LoginCms) Document(org.dom4j.Document)

Example 3 with BusinessServiceException

use of sic.service.BusinessServiceException in project sic by belluccifranco.

the class AfipServiceImpl method autorizarFacturaVenta.

@Override
public FacturaVenta autorizarFacturaVenta(FacturaVenta factura) {
    if (configuracionDelSistemaService.getConfiguracionDelSistemaPorEmpresa(factura.getEmpresa()).isFacturaElectronicaHabilitada() == false) {
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_cds_fe_habilitada"));
    }
    if (factura.getTipoComprobante() != TipoDeComprobante.FACTURA_A && factura.getTipoComprobante() != TipoDeComprobante.FACTURA_B && factura.getTipoComprobante() != TipoDeComprobante.FACTURA_C) {
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_factura_tipo_no_valido"));
    }
    if (factura.getCAE() != 0) {
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_factura_ya_autorizada"));
    }
    AfipWSAACredencial afipCredencial = this.getAfipWSAACredencial("wsfe", factura.getEmpresa());
    FEAuthRequest feAuthRequest = new FEAuthRequest();
    feAuthRequest.setCuit(afipCredencial.getCuit());
    feAuthRequest.setSign(afipCredencial.getSign());
    feAuthRequest.setToken(afipCredencial.getToken());
    FECAESolicitar fecaeSolicitud = new FECAESolicitar();
    fecaeSolicitud.setAuth(feAuthRequest);
    int nroPuntoDeVentaAfip = configuracionDelSistemaService.getConfiguracionDelSistemaPorEmpresa(factura.getEmpresa()).getNroPuntoDeVentaAfip();
    int siguienteNroComprobante = this.getSiguienteNroComprobante(feAuthRequest, factura.getTipoComprobante(), nroPuntoDeVentaAfip);
    fecaeSolicitud.setFeCAEReq(this.transformFacturaVentaToFECAERequest(factura, siguienteNroComprobante, nroPuntoDeVentaAfip));
    try {
        FECAEResponse response = afipWebServiceSOAPClient.FECAESolicitar(fecaeSolicitud);
        String msjError = "";
        // errores generales de la request
        if (response.getErrors() != null) {
            msjError = response.getErrors().getErr().get(0).getCode() + "-" + response.getErrors().getErr().get(0).getMsg();
            LOGGER.error(msjError);
            if (!msjError.isEmpty()) {
                throw new BusinessServiceException(msjError);
            }
        }
        // errores particulares de cada comprobante
        if (response.getFeDetResp().getFECAEDetResponse().get(0).getResultado().equals("R")) {
            msjError += response.getFeDetResp().getFECAEDetResponse().get(0).getObservaciones().getObs().get(0).getMsg();
            LOGGER.error(msjError);
            throw new BusinessServiceException(msjError);
        }
        long cae = Long.valueOf(response.getFeDetResp().getFECAEDetResponse().get(0).getCAE());
        factura.setCAE(cae);
        SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
        factura.setVencimientoCAE(formatter.parse(response.getFeDetResp().getFECAEDetResponse().get(0).getCAEFchVto()));
        factura.setNumSerieAfip(nroPuntoDeVentaAfip);
        factura.setNumFacturaAfip(siguienteNroComprobante);
        return factura;
    } catch (WebServiceClientException ex) {
        LOGGER.error(ex.getMessage());
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_autorizacion_error"));
    } catch (ParseException ex) {
        LOGGER.error(ex.getMessage());
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_error_procesando_fecha"));
    }
}
Also used : AfipWSAACredencial(sic.modelo.AfipWSAACredencial) FECAEResponse(afip.wsfe.wsdl.FECAEResponse) BusinessServiceException(sic.service.BusinessServiceException) FEAuthRequest(afip.wsfe.wsdl.FEAuthRequest) WebServiceClientException(org.springframework.ws.client.WebServiceClientException) FECAESolicitar(afip.wsfe.wsdl.FECAESolicitar) ParseException(java.text.ParseException) SimpleDateFormat(java.text.SimpleDateFormat)

Example 4 with BusinessServiceException

use of sic.service.BusinessServiceException in project sic by belluccifranco.

the class AfipWebServiceSOAPClient method crearTicketRequerimientoAcceso.

public String crearTicketRequerimientoAcceso(String service, long ticketTime) {
    Date now = new Date();
    GregorianCalendar genenerationTime = new GregorianCalendar();
    GregorianCalendar expirationTime = new GregorianCalendar();
    DatatypeFactory datatypeFactory = null;
    String uniqueId = Long.toString(now.getTime() / 1000);
    expirationTime.setTime(new Date(now.getTime() + ticketTime));
    try {
        datatypeFactory = DatatypeFactory.newInstance();
    } catch (DatatypeConfigurationException ex) {
        LOGGER.error(ex.getMessage());
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_error_xml_factory"));
    }
    XMLGregorianCalendar XMLGenTime = datatypeFactory.newXMLGregorianCalendar(genenerationTime);
    XMLGregorianCalendar XMLExpTime = datatypeFactory.newXMLGregorianCalendar(expirationTime);
    String LoginTicketRequest_xml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>" + "<loginTicketRequest version=\"1.0\">" + "<header>" + "<uniqueId>" + uniqueId + "</uniqueId>" + "<generationTime>" + XMLGenTime + "</generationTime>" + "<expirationTime>" + XMLExpTime + "</expirationTime>" + "</header>" + "<service>" + service + "</service>" + "</loginTicketRequest>";
    return LoginTicketRequest_xml;
}
Also used : DatatypeConfigurationException(javax.xml.datatype.DatatypeConfigurationException) XMLGregorianCalendar(javax.xml.datatype.XMLGregorianCalendar) BusinessServiceException(sic.service.BusinessServiceException) DatatypeFactory(javax.xml.datatype.DatatypeFactory) GregorianCalendar(java.util.GregorianCalendar) XMLGregorianCalendar(javax.xml.datatype.XMLGregorianCalendar) Date(java.util.Date)

Example 5 with BusinessServiceException

use of sic.service.BusinessServiceException in project sic by belluccifranco.

the class GastoServiceImpl method eliminar.

@Override
@Transactional
public void eliminar(long idGasto) {
    Gasto gastoParaEliminar = this.getGastoPorId(idGasto);
    if (this.cajaService.getUltimaCaja(gastoParaEliminar.getEmpresa().getId_Empresa()).getEstado().equals(EstadoCaja.CERRADA)) {
        throw new BusinessServiceException(ResourceBundle.getBundle("Mensajes").getString("mensaje_gasto_caja_cerrada"));
    }
    gastoParaEliminar.setEliminado(true);
    gastoRepository.save(gastoParaEliminar);
}
Also used : Gasto(sic.modelo.Gasto) BusinessServiceException(sic.service.BusinessServiceException) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

BusinessServiceException (sic.service.BusinessServiceException)33 GregorianCalendar (java.util.GregorianCalendar)12 Calendar (java.util.Calendar)11 EntityNotFoundException (javax.persistence.EntityNotFoundException)11 Transactional (org.springframework.transaction.annotation.Transactional)8 ArrayList (java.util.ArrayList)5 Date (java.util.Date)5 WebServiceClientException (org.springframework.ws.client.WebServiceClientException)4 FEAuthRequest (afip.wsfe.wsdl.FEAuthRequest)3 BooleanBuilder (com.querydsl.core.BooleanBuilder)3 RenglonFactura (sic.modelo.RenglonFactura)3 RenglonNotaCredito (sic.modelo.RenglonNotaCredito)3 LoginCms (afip.wsaa.wsdl.LoginCms)2 AlicIva (afip.wsfe.wsdl.AlicIva)2 ArrayOfAlicIva (afip.wsfe.wsdl.ArrayOfAlicIva)2 ArrayOfFECAEDetRequest (afip.wsfe.wsdl.ArrayOfFECAEDetRequest)2 FECAECabRequest (afip.wsfe.wsdl.FECAECabRequest)2 FECAEDetRequest (afip.wsfe.wsdl.FECAEDetRequest)2 FECAERequest (afip.wsfe.wsdl.FECAERequest)2 FECAEResponse (afip.wsfe.wsdl.FECAEResponse)2