Merge pull request 'bug#al-2213' (#36) from AL-2213 into master

Reviewed-on: http://18.235.188.113:3000/adm/ModelWeb/pulls/36
Reviewed-by: pinheiro <valdevir@rjconsultores.com.br>
Reviewed-by: fabio <fabio.faria@rjconsultores.com.br>
master
Valdir Cordeiro 2023-03-13 19:57:30 +00:00
commit ae6a253304
2 changed files with 25 additions and 1 deletions

View File

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

View File

@ -337,6 +337,12 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
@Column(name = "LONGITUDE ")
private Float longitude;
@Column(name = "INDBLOQUEARDESCONTOAPI")
private Boolean indBloquearDescontoAPI;
@Column(name = "INDBLOQUEARDESCONTOWEB")
private Boolean indBloquearDescontoWEB;
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
return cobrancaAdicionalList;
}
@ -1344,5 +1350,23 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
public String getTextoInclusaoExclusao() {
return String.format("ID [%s]", getPuntoventaId());
}
public Boolean getIndBloquearDescontoAPI() {
return indBloquearDescontoAPI == null ? false : indBloquearDescontoAPI;
}
public void setIndBloquearDescontoAPI(Boolean indBloquearDescontoAPI) {
this.indBloquearDescontoAPI = indBloquearDescontoAPI;
}
public Boolean getIndBloquearDescontoWEB() {
return indBloquearDescontoWEB == null ? false : indBloquearDescontoWEB;
}
public void setIndBloquearDescontoWEB(Boolean indBloquearDescontoWEB) {
this.indBloquearDescontoWEB = indBloquearDescontoWEB;
}
}