Refatoraçao recarga celular feat bug#AL-3513

master
Fabio 2024-01-26 18:38:32 -03:00
parent 6b5dc40eef
commit ee65e53a4c
6 changed files with 280 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId> <artifactId>ModelWeb</artifactId>
<version>1.33.0</version> <version>1.34.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -0,0 +1,14 @@
package com.rjconsultores.ventaboletos.dao;
import java.util.List;
import java.util.Optional;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.EmpresaRecargaConfig;
public interface EmpresaRecargaDAO extends GenericDAO<EmpresaRecargaConfig, Integer> {
public List<EmpresaRecargaConfig> obtenerTodos();
public Optional<EmpresaRecargaConfig> buscarPorEmpresa(Empresa empresa);
}

View File

@ -0,0 +1,43 @@
package com.rjconsultores.ventaboletos.dao.hibernate;
import java.util.List;
import java.util.Optional;
import org.hibernate.Criteria;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Restrictions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Repository;
import com.rjconsultores.ventaboletos.dao.EmpresaRecargaDAO;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.EmpresaRecargaConfig;
@Repository("empresaRecargaDAO")
public class EmpresaRecargaHibernateDAO extends GenericHibernateDAO<EmpresaRecargaConfig, Integer>
implements EmpresaRecargaDAO {
@Autowired
public EmpresaRecargaHibernateDAO(@Qualifier("sessionFactory") SessionFactory factory) {
setSessionFactory(factory);
}
@SuppressWarnings("unchecked")
@Override
public List<EmpresaRecargaConfig> obtenerTodos() {
Criteria c = getSession().createCriteria(getPersistentClass());
c.add(Restrictions.eq("activo", Boolean.TRUE));
return c.list();
}
@Override
public Optional<EmpresaRecargaConfig> buscarPorEmpresa(Empresa empresa) {
Criteria c = getSession().createCriteria(getPersistentClass());
c.add(Restrictions.eq("activo", Boolean.TRUE));
c.add(Restrictions.eq("empresa.empresaId", empresa.getEmpresaId()));
return Optional.ofNullable((EmpresaRecargaConfig) c.uniqueResult());
}
}

View File

@ -0,0 +1,141 @@
package com.rjconsultores.ventaboletos.entidad;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Basic;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToOne;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
import javax.persistence.Temporal;
import javax.persistence.TemporalType;
@Entity
@SequenceGenerator(name = "EMP_RECARGA_CONFIG_SEQ", sequenceName = "EMP_RECARGA_CONFIG_SEQ", allocationSize = 1)
@Table(name = "EMPRESA_RECARGA_CONFIG")
public class EmpresaRecargaConfig implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Basic(optional = false)
@GeneratedValue(strategy = GenerationType.AUTO, generator = "EMP_RECARGA_CONFIG_SEQ")
@Column(name = "EMPRESARECARGA_ID")
private Integer empresaRecargaId;
@Column(name = "CLIENT_ID")
private String clientId;
@Column(name = "SECRET")
private String secret;
@OneToOne
@JoinColumn(name = "EMPRESA_ID")
private Empresa empresa;
@Column(name = "ACTIVO")
private Boolean activo;
@Column(name = "FECMODIF")
@Temporal(TemporalType.TIMESTAMP)
private Date fecmodif;
@Column(name = "USUARIO_ID")
private Integer usuarioId;
public EmpresaRecargaConfig() {
}
public Integer getEmpresaRecargaId() {
return empresaRecargaId;
}
public void setEmpresaRecargaId(Integer empresaRecargaId) {
this.empresaRecargaId = empresaRecargaId;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getSecret() {
return secret;
}
public void setSecret(String secret) {
this.secret = secret;
}
public Empresa getEmpresa() {
return empresa;
}
public void setEmpresa(Empresa empresa) {
this.empresa = empresa;
}
public Boolean getActivo() {
return activo;
}
public void setActivo(Boolean activo) {
this.activo = activo;
}
public Date getFecmodif() {
return fecmodif;
}
public void setFecmodif(Date fecmodif) {
this.fecmodif = fecmodif;
}
public Integer getUsuarioId() {
return usuarioId;
}
public void setUsuarioId(Integer usuarioId) {
this.usuarioId = usuarioId;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result
+ ((empresaRecargaId == null) ? 0 : empresaRecargaId.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
EmpresaRecargaConfig other = (EmpresaRecargaConfig) obj;
if (empresaRecargaId == null) {
if (other.empresaRecargaId != null)
return false;
} else if (!empresaRecargaId.equals(other.empresaRecargaId))
return false;
return true;
}
@Override
public String toString() {
return String.valueOf(this.getEmpresaRecargaId());
}
}

View File

@ -0,0 +1,12 @@
package com.rjconsultores.ventaboletos.service;
import java.util.Optional;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.EmpresaRecargaConfig;
public interface EmpresaRecargaService extends GenericService<EmpresaRecargaConfig, Integer> {
public Optional<EmpresaRecargaConfig> buscarPorEmpresa(Empresa empresa);
}

View File

@ -0,0 +1,69 @@
package com.rjconsultores.ventaboletos.service.impl;
import java.util.Calendar;
import java.util.List;
import java.util.Optional;
import com.rjconsultores.ventaboletos.dao.EmpresaRecargaDAO;
import com.rjconsultores.ventaboletos.entidad.Empresa;
import com.rjconsultores.ventaboletos.entidad.EmpresaRecargaConfig;
import com.rjconsultores.ventaboletos.service.EmpresaRecargaService;
import com.rjconsultores.ventaboletos.utilerias.UsuarioLogado;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service("empresaRecargaService")
public class EmpresaRecargaServiceImpl implements EmpresaRecargaService {
@Autowired
private EmpresaRecargaDAO empresaRecargaService;
@Override
public List<EmpresaRecargaConfig> obtenerTodos() {
return empresaRecargaService.obtenerTodos();
}
@Override
public EmpresaRecargaConfig obtenerID(Integer id) {
return empresaRecargaService.obtenerID(id);
}
@Override
@Transactional
public EmpresaRecargaConfig suscribir(EmpresaRecargaConfig entidad) {
entidad.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
entidad.setFecmodif(Calendar.getInstance().getTime());
entidad.setActivo(Boolean.TRUE);
return empresaRecargaService.suscribir(entidad);
}
@Override
@Transactional
public EmpresaRecargaConfig actualizacion(EmpresaRecargaConfig entidad) {
entidad.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
entidad.setFecmodif(Calendar.getInstance().getTime());
entidad.setActivo(Boolean.TRUE);
return empresaRecargaService.actualizacion(entidad);
}
@Override
@Transactional
public void borrar(EmpresaRecargaConfig entidad) {
entidad.setUsuarioId(UsuarioLogado.getUsuarioLogado().getUsuarioId());
entidad.setFecmodif(Calendar.getInstance().getTime());
entidad.setActivo(Boolean.FALSE);
empresaRecargaService.actualizacion(entidad);
}
@Override
public Optional<EmpresaRecargaConfig> buscarPorEmpresa(Empresa empresa) {
return empresaRecargaService.buscarPorEmpresa(empresa);
}
}