diff --git a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java index 3f39d26b4..d4f2516f1 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EmpresaImposto.java @@ -104,6 +104,9 @@ public class EmpresaImposto implements Serializable { @JoinColumn(name = "ESTADO_ID", referencedColumnName = "ESTADO_ID") @ManyToOne private Estado estado; + + @Column(name = "INDICEICMSECF") + private Integer indiceICMSecf; public EmpresaImposto() { } @@ -568,6 +571,16 @@ public class EmpresaImposto implements Serializable { this.estado = estado; } + + + public Integer getIndiceICMSecf() { + return indiceICMSecf; + } + + public void setIndiceICMSecf(Integer indiceICMSecf) { + this.indiceICMSecf = indiceICMSecf; + } + @Override public int hashCode() { int hash = 0; @@ -592,4 +605,4 @@ public class EmpresaImposto implements Serializable { return "com.rjconsultores.ventaboletos.entidad.EmpresaImposto[empresaImpostoId=" + empresaImpostoId + "]"; } -} +} \ No newline at end of file diff --git a/src/com/rjconsultores/ventaboletos/entidad/Ruta.java b/src/com/rjconsultores/ventaboletos/entidad/Ruta.java index 99d0156ec..65d579b33 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Ruta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Ruta.java @@ -78,7 +78,14 @@ public class Ruta implements Serializable { private Boolean indSentidoIda; @Column(name = "NUMRUTA") private Integer numRuta; - + + @Column(name = "INDTRIBTARIFA") + private Boolean indTribTarifa; + @Column(name = "INDTRIBPEDAGIO") + private Boolean indTribPedagio; + @Column(name = "INDTRIBTAXAEMBARQUE") + private Boolean indTribTaxaEmbarque; + public Ruta() { } @@ -239,6 +246,30 @@ public class Ruta implements Serializable { this.grupoRuta = grupoRuta; } + public Boolean getIndTribTarifa() { + return indTribTarifa; + } + + public void setIndTribTarifa(Boolean indTribTarifa) { + this.indTribTarifa = indTribTarifa; + } + + public Boolean getIndTribPedagio() { + return indTribPedagio; + } + + public void setIndTribPedagio(Boolean indTribPedagio) { + this.indTribPedagio = indTribPedagio; + } + + public Boolean getIndTribTaxaEmbarque() { + return indTribTaxaEmbarque; + } + + public void setIndTribTaxaEmbarque(Boolean indTribTaxaEmbarque) { + this.indTribTaxaEmbarque = indTribTaxaEmbarque; + } + public Boolean getIndNombreObligatorio() { return indNombreObligatorio; }