diff --git a/pom.xml b/pom.xml index ea96f62ab..10b3099a9 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.41.3 + 1.42.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java b/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java index 40a587fcb..a6da47c41 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java +++ b/src/com/rjconsultores/ventaboletos/entidad/OrgaoCancelacion.java @@ -124,6 +124,12 @@ public class OrgaoCancelacion implements Serializable, Auditavel { @Column(name = "INDTAXACONVORGAOCONCEDENTE") private Boolean indTaxaConvenienciaOrgaoConcedente; + @Column(name = "INDPONTOVENDANAOPRESENCIAL") + private Boolean indPontoVendaNaoPresencial; + public List getCobrancaAdicionalList() { return cobrancaAdicionalList; } @@ -1389,5 +1392,11 @@ public class PuntoVenta implements Serializable, Auditavel { this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente; } - + public Boolean getIndPontoVendaNaoPresencial() { + return indPontoVendaNaoPresencial == null ? false : indPontoVendaNaoPresencial; + } + + public void setIndPontoVendaNaoPresencial(Boolean indPontoVendaNaoPresencial) { + this.indPontoVendaNaoPresencial = indPontoVendaNaoPresencial; + } } \ No newline at end of file