diff --git a/pom.xml b/pom.xml index 106cf4ff4..f067e18cd 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.109.2 + 1.110.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/OCDParam.java b/src/com/rjconsultores/ventaboletos/entidad/OCDParam.java index 334073637..49cb89c6b 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/OCDParam.java +++ b/src/com/rjconsultores/ventaboletos/entidad/OCDParam.java @@ -52,6 +52,7 @@ public class OCDParam implements java.io.Serializable { private BigDecimal tiempoLimitePenalizacion; private List listOCDPtoVtaParam; private Boolean indEstornoPix; + private Boolean indReembolsoAdmin; public OCDParam(Long ocdparamId, BigDecimal penalizacion, Integer diasPagar, PuntoVenta puntoventa, Empresa empresa, Estado estado, Boolean activo, Date fecmodif, Integer usuarioId) { @@ -284,5 +285,13 @@ public class OCDParam implements java.io.Serializable { public void setIndEstornoPix(Boolean indEstornoPix) { this.indEstornoPix = indEstornoPix; } + @Column(name = "INDREEMBOLSOADMIN") + public Boolean getIndReembolsoAdmin() { + return indReembolsoAdmin==null?false:indReembolsoAdmin; + } + + public void setIndReembolsoAdmin(Boolean indReembolsoAdmin) { + this.indReembolsoAdmin = indReembolsoAdmin; + } } \ No newline at end of file