fixes bug #AL-4803. Criacao campo INDRECIBOEXCESSOBAGAGEMDET.
parent
5a20732ad5
commit
d3a715602e
2
pom.xml
2
pom.xml
|
@ -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.108.2</version>
|
<version>1.109.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -17,12 +17,12 @@ import javax.persistence.TemporalType;
|
||||||
|
|
||||||
@Entity
|
@Entity
|
||||||
@SequenceGenerator(name = "CONFIG_PRODUCTO_PARADA_SEQ", sequenceName = "CONFIG_PRODUCTO_PARADA_SEQ", allocationSize = 1)
|
@SequenceGenerator(name = "CONFIG_PRODUCTO_PARADA_SEQ", sequenceName = "CONFIG_PRODUCTO_PARADA_SEQ", allocationSize = 1)
|
||||||
@Table(name = "CONFIGURACION_PRODUCTO_PARADA")
|
@Table(name = "CONFIG_PRODUCTO_PARADA")
|
||||||
public class ConfiguracionProductoParada {
|
public class ConfiguracionProductoParada {
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
@Basic(optional = false)
|
@Basic(optional = false)
|
||||||
@Column(name = "CONF_PRODUCTO_PARADA_ID")
|
@Column(name = "CONFIGPRODUCTOPARADA_ID")
|
||||||
@GeneratedValue(strategy = GenerationType.AUTO, generator = "CONFIG_PRODUCTO_PARADA_SEQ")
|
@GeneratedValue(strategy = GenerationType.AUTO, generator = "CONFIG_PRODUCTO_PARADA_SEQ")
|
||||||
private Long configuracionProductoParadaId;
|
private Long configuracionProductoParadaId;
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
|
|
|
@ -107,6 +107,8 @@ public class TipoEventoExtra implements Serializable {
|
||||||
private Boolean indconferenciafisicacomissao;
|
private Boolean indconferenciafisicacomissao;
|
||||||
@Column(name = "INDENVIAEXCESSODEBAGAGEMSEFAZ")
|
@Column(name = "INDENVIAEXCESSODEBAGAGEMSEFAZ")
|
||||||
private Boolean indEnviaExcessoDeBagagemSefaz;
|
private Boolean indEnviaExcessoDeBagagemSefaz;
|
||||||
|
@Column(name = "INDRECIBOEXCESSOBAGAGEMDET")
|
||||||
|
private Boolean indReciboExcessoBagagemDet;
|
||||||
|
|
||||||
@Type(type = "com.rjconsultores.ventaboletos.constantes.CustomEnumTypeHibernate", parameters = {
|
@Type(type = "com.rjconsultores.ventaboletos.constantes.CustomEnumTypeHibernate", parameters = {
|
||||||
@Parameter(name = "type", value = "com.rjconsultores.ventaboletos.constantes.CustomEnumTypeHibernate"),
|
@Parameter(name = "type", value = "com.rjconsultores.ventaboletos.constantes.CustomEnumTypeHibernate"),
|
||||||
|
@ -386,6 +388,14 @@ public class TipoEventoExtra implements Serializable {
|
||||||
this.indconferenciafisicacomissao = indconferenciafisicacomissao;
|
this.indconferenciafisicacomissao = indconferenciafisicacomissao;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndReciboExcessoBagagemDet() {
|
||||||
|
return indReciboExcessoBagagemDet!= null ? indReciboExcessoBagagemDet : Boolean.FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndReciboExcessoBagagemDet(Boolean indReciboExcessoBagagemDet) {
|
||||||
|
this.indReciboExcessoBagagemDet = indReciboExcessoBagagemDet;
|
||||||
|
}
|
||||||
|
|
||||||
public List<TipoEventoExtraEmpresa> getEmpresas() {
|
public List<TipoEventoExtraEmpresa> getEmpresas() {
|
||||||
List<TipoEventoExtraEmpresa> lista = new ArrayList<TipoEventoExtraEmpresa>();
|
List<TipoEventoExtraEmpresa> lista = new ArrayList<TipoEventoExtraEmpresa>();
|
||||||
for (TipoEventoExtraEmpresa t : empresas) {
|
for (TipoEventoExtraEmpresa t : empresas) {
|
||||||
|
|
Loading…
Reference in New Issue