fixes bug#AL-2686
parent
e324058751
commit
4f2dc4bf80
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.5.6</version>
|
<version>1.6.0</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.rjconsultores.ventaboletos.entidad;
|
package com.rjconsultores.ventaboletos.entidad;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.math.BigDecimal;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
import javax.persistence.Basic;
|
import javax.persistence.Basic;
|
||||||
|
@ -66,6 +67,15 @@ public class OrgaoEmpParam implements Serializable, Auditavel<OrgaoEmpParam> {
|
||||||
@Column(name = "CODEMPRESAPORORGAO", length=30)
|
@Column(name = "CODEMPRESAPORORGAO", length=30)
|
||||||
private String codEmpresaPorOrgao;
|
private String codEmpresaPorOrgao;
|
||||||
|
|
||||||
|
@Column(name = "INDICEEXCESSODEPAGAGEM")
|
||||||
|
private BigDecimal indiceExcessoDeBagagem;
|
||||||
|
|
||||||
|
@Column(name = "PESOEXCESSODEBAGAGEMFRANQUIA")
|
||||||
|
private Integer pesoExcessoDeBagagemFranquia;
|
||||||
|
|
||||||
|
@Column(name = "PESOEXTRAEXCESSODEBAGAGEM")
|
||||||
|
private Integer pesoExtraExcessoDeBagagem;
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
private OrgaoEmpParam orgaoEmpParamClone;
|
private OrgaoEmpParam orgaoEmpParamClone;
|
||||||
|
@ -149,6 +159,33 @@ public class OrgaoEmpParam implements Serializable, Auditavel<OrgaoEmpParam> {
|
||||||
public void setIndNaoRestringe2ViaBPe(Boolean indNaoRestringe2ViaBPe) {
|
public void setIndNaoRestringe2ViaBPe(Boolean indNaoRestringe2ViaBPe) {
|
||||||
this.indNaoRestringe2ViaBPe = indNaoRestringe2ViaBPe;
|
this.indNaoRestringe2ViaBPe = indNaoRestringe2ViaBPe;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public BigDecimal getIndiceExcessoDeBagagem() {
|
||||||
|
return indiceExcessoDeBagagem;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndiceExcessoDeBagagem(BigDecimal indiceExcessoDeBagagem) {
|
||||||
|
this.indiceExcessoDeBagagem = indiceExcessoDeBagagem;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Integer getPesoExcessoDeBagagemFranquia() {
|
||||||
|
return pesoExcessoDeBagagemFranquia;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPesoExcessoDeBagagemFranquia(Integer pesoExcessoDeBagagemFranquia) {
|
||||||
|
this.pesoExcessoDeBagagemFranquia = pesoExcessoDeBagagemFranquia;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getPesoExtraExcessoDeBagagem() {
|
||||||
|
return pesoExtraExcessoDeBagagem;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPesoExtraExcessoDeBagagem(Integer pesoExtraExcessoDeBagagem) {
|
||||||
|
this.pesoExtraExcessoDeBagagem = pesoExtraExcessoDeBagagem;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void clonar() throws CloneNotSupportedException {
|
public void clonar() throws CloneNotSupportedException {
|
||||||
|
|
|
@ -102,6 +102,8 @@ public class TipoEventoExtra implements Serializable {
|
||||||
private List<TipoEventoExtraEmpresa> empresas = new ArrayList<TipoEventoExtraEmpresa>();
|
private List<TipoEventoExtraEmpresa> empresas = new ArrayList<TipoEventoExtraEmpresa>();
|
||||||
@Column(name = "INDCONFERENCIAFISICACOMISSAO")
|
@Column(name = "INDCONFERENCIAFISICACOMISSAO")
|
||||||
private Boolean indconferenciafisicacomissao;
|
private Boolean indconferenciafisicacomissao;
|
||||||
|
@Column(name = "INDENVIAEXCESSODEBAGAGEMSEFAZ")
|
||||||
|
private Boolean indEnviaExcessoDeBagagemSefaz;
|
||||||
|
|
||||||
@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"),
|
||||||
|
@ -453,4 +455,14 @@ public class TipoEventoExtra implements Serializable {
|
||||||
this.indValidarEstoque = indValidarEstoque;
|
this.indValidarEstoque = indValidarEstoque;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndEnviaExcessoDeBagagemSefaz() {
|
||||||
|
return indEnviaExcessoDeBagagemSefaz==null?false:indEnviaExcessoDeBagagemSefaz;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndEnviaExcessoDeBagagemSefaz(Boolean indEnviaExcessoDeBagagemSefaz) {
|
||||||
|
this.indEnviaExcessoDeBagagemSefaz = indEnviaExcessoDeBagagemSefaz;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue