Merge pull request 'fixes #AL-2782' (!90) from AL-2782 into master

Reviewed-on: http://18.235.188.113:3000/adm/ModelWeb/pulls/90
Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>
master
pinheiro 2023-08-18 23:22:08 +00:00
commit 8ebfc6e059
2 changed files with 14 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId> <artifactId>ModelWeb</artifactId>
<version>1.9.1</version> <version>1.10.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>rj-releases</id> <id>rj-releases</id>

View File

@ -123,6 +123,9 @@ public class Pricing implements Serializable {
@Column(name = "INDSAFER") @Column(name = "INDSAFER")
private Boolean indSafer; private Boolean indSafer;
@Column(name = "INDEXIBEPOPUPPRICINGPOL")
private Boolean indExibePopupPricingPol;
@OneToMany(mappedBy = "pricing", cascade = CascadeType.ALL) @OneToMany(mappedBy = "pricing", cascade = CascadeType.ALL)
private List<PricingConexao> pricingConexaoList; private List<PricingConexao> pricingConexaoList;
@ -593,4 +596,14 @@ public class Pricing implements Serializable {
public void setPricingConexaoList(List<PricingConexao> pricingConexaoList) { public void setPricingConexaoList(List<PricingConexao> pricingConexaoList) {
this.pricingConexaoList = pricingConexaoList; this.pricingConexaoList = pricingConexaoList;
} }
public Boolean getIndExibePopupPricingPol() {
return indExibePopupPricingPol!=null ? indExibePopupPricingPol : Boolean.FALSE;
}
public void setIndExibePopupPricingPol(Boolean indExibePopupPricingPol) {
this.indExibePopupPricingPol = indExibePopupPricingPol;
}
} }