bug#al-2213

Ouro e Prata - Espec_-_Bloquear-Desbloquear_desconto_via_API
dev:
qua:
master
valdir.cordeiro 2023-03-13 16:53:35 -03:00
parent 537a952dde
commit 0adde4acce
2 changed files with 25 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.0.38</version> <version>1.0.39</version>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>rj-releases</id> <id>rj-releases</id>

View File

@ -337,6 +337,12 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
@Column(name = "LONGITUDE ") @Column(name = "LONGITUDE ")
private Float longitude; private Float longitude;
@Column(name = "INDBLOQUEARDESCONTOAPI")
private Boolean indBloquearDescontoAPI;
@Column(name = "INDBLOQUEARDESCONTOWEB")
private Boolean indBloquearDescontoWEB;
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() { public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
return cobrancaAdicionalList; return cobrancaAdicionalList;
} }
@ -1344,5 +1350,23 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
public String getTextoInclusaoExclusao() { public String getTextoInclusaoExclusao() {
return String.format("ID [%s]", getPuntoventaId()); 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;
}
} }