From 79e6d721a7d58de21cab19260b97379ab45d1569 Mon Sep 17 00:00:00 2001 From: valdevir Date: Fri, 18 Aug 2023 20:18:22 -0300 Subject: [PATCH] fixes #AL-2782 --- pom.xml | 2 +- .../rjconsultores/ventaboletos/entidad/Pricing.java | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7784b4abe..788b772e8 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.9.1 + 1.10.0 rj-releases diff --git a/src/com/rjconsultores/ventaboletos/entidad/Pricing.java b/src/com/rjconsultores/ventaboletos/entidad/Pricing.java index 318cce7d5..1081cb7ed 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Pricing.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Pricing.java @@ -123,6 +123,9 @@ public class Pricing implements Serializable { @Column(name = "INDSAFER") private Boolean indSafer; + @Column(name = "INDEXIBEPOPUPPRICINGPOL") + private Boolean indExibePopupPricingPol; + @OneToMany(mappedBy = "pricing", cascade = CascadeType.ALL) private List pricingConexaoList; @@ -593,4 +596,14 @@ public class Pricing implements Serializable { public void setPricingConexaoList(List pricingConexaoList) { this.pricingConexaoList = pricingConexaoList; } + + public Boolean getIndExibePopupPricingPol() { + return indExibePopupPricingPol!=null ? indExibePopupPricingPol : Boolean.FALSE; + } + + public void setIndExibePopupPricingPol(Boolean indExibePopupPricingPol) { + this.indExibePopupPricingPol = indExibePopupPricingPol; + } + + }