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;
+ }
+
+
}