Merge pull request 'Inserido novo menu e tela Tipo de Documento. fixes bug #AL-4655' (!250) from AL-4655 into master
Reviewed-on: adm/ModelWeb#250 Reviewed-by: Valdir Cordeiro <valdir.cordeiro@totvs.com.br>master
commit
d56489469e
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.94.0</version>
|
||||
<version>1.95.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -8,4 +8,6 @@ public interface TipoIdentificacionDAO extends GenericDAO<TipoIdentificacion, In
|
|||
|
||||
public List<TipoIdentificacion> obtenerTodos();
|
||||
|
||||
public TipoIdentificacion buscarPorNome(String descTipoDoc);
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
package com.rjconsultores.ventaboletos.dao.hibernate;
|
||||
|
||||
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;
|
||||
|
@ -15,5 +17,13 @@ public class TipoIdentificacionHibernateDAO extends GenericHibernateDAO<TipoIden
|
|||
public TipoIdentificacionHibernateDAO(@Qualifier("sessionFactory") SessionFactory factory) {
|
||||
setSessionFactory(factory);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TipoIdentificacion buscarPorNome(String descTipoDoc) {
|
||||
Criteria c = getSession().createCriteria(getPersistentClass());
|
||||
c.add(Restrictions.eq("desctipo", descTipoDoc));
|
||||
c.add(Restrictions.eq(ACTIVO, Boolean.TRUE));
|
||||
return (TipoIdentificacion) c.uniqueResult();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,17 +5,22 @@ import java.util.Date;
|
|||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.GenerationType;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.SequenceGenerator;
|
||||
import javax.persistence.Table;
|
||||
|
||||
@Entity
|
||||
@Table(name = "TIPO_IDENTIFICACION")
|
||||
@SequenceGenerator(name = "TIPO_IDENTIFICACION_SEQ", sequenceName = "TIPO_IDENTIFICACION_SEQ", allocationSize = 1)
|
||||
public class TipoIdentificacion implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Id
|
||||
@Column(name = "TIPOIDENTIFICACION_ID")
|
||||
@GeneratedValue(strategy = GenerationType.AUTO, generator = "TIPO_IDENTIFICACION_SEQ")
|
||||
private Integer tipoIdentificacionId;
|
||||
|
||||
@Column(name = "DESCTIPO")
|
||||
|
@ -29,6 +34,9 @@ public class TipoIdentificacion implements Serializable {
|
|||
|
||||
@Column(name = "USUARIO_ID")
|
||||
private Integer usuarioId;
|
||||
|
||||
@Column(name = "INDEXIBECONFIRMACAOTOTALBUS")
|
||||
private Boolean indExibeConfirmacaoTotalbus;
|
||||
|
||||
public Integer getTipoIdentificacionId() {
|
||||
return tipoIdentificacionId;
|
||||
|
@ -75,6 +83,14 @@ public class TipoIdentificacion implements Serializable {
|
|||
return getDesctipo();
|
||||
}
|
||||
|
||||
public Boolean getIndExibeConfirmacaoTotalbus() {
|
||||
return indExibeConfirmacaoTotalbus;
|
||||
}
|
||||
|
||||
public void setIndExibeConfirmacaoTotalbus(Boolean indExibeConfirmacaoTotalbus) {
|
||||
this.indExibeConfirmacaoTotalbus = indExibeConfirmacaoTotalbus;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
|
|
|
@ -4,8 +4,16 @@ import java.util.List;
|
|||
|
||||
import com.rjconsultores.ventaboletos.entidad.TipoIdentificacion;
|
||||
|
||||
public interface TipoIdentificacionService {
|
||||
public interface TipoIdentificacionService extends GenericService<TipoIdentificacion, Integer> {
|
||||
|
||||
public List<TipoIdentificacion> obtenerTodos();
|
||||
|
||||
public TipoIdentificacion suscribir(TipoIdentificacion tipoDocumento);
|
||||
|
||||
public void borrar(TipoIdentificacion tipoDocumento);
|
||||
|
||||
public TipoIdentificacion actualizacion(TipoIdentificacion tipoDocumento);
|
||||
|
||||
public TipoIdentificacion buscarPorNome(String descTipoDoc);
|
||||
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import java.util.List;
|
|||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
|
||||
import com.rjconsultores.ventaboletos.dao.TipoIdentificacionDAO;
|
||||
import com.rjconsultores.ventaboletos.entidad.TipoIdentificacion;
|
||||
|
@ -20,4 +21,33 @@ public class TipoIdentificacionServiceImpl implements TipoIdentificacionService
|
|||
return tipoIdentificacionDAO.obtenerTodos();
|
||||
}
|
||||
|
||||
@Override
|
||||
public TipoIdentificacion obtenerID(Integer id) {
|
||||
return tipoIdentificacionDAO.obtenerID(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
@Transactional
|
||||
public TipoIdentificacion suscribir(TipoIdentificacion tipoDocumento) {
|
||||
return tipoIdentificacionDAO.suscribir(tipoDocumento);
|
||||
}
|
||||
|
||||
@Override
|
||||
@Transactional
|
||||
public void borrar(TipoIdentificacion tipoDocumento) {
|
||||
tipoIdentificacionDAO.borrar(tipoDocumento);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
@Transactional
|
||||
public TipoIdentificacion actualizacion(TipoIdentificacion tipoDocumento) {
|
||||
return tipoIdentificacionDAO.actualizacion(tipoDocumento);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TipoIdentificacion buscarPorNome(String descTipoDoc) {
|
||||
return tipoIdentificacionDAO.buscarPorNome(descTipoDoc);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue