bug#al-2213
Ouro e Prata - Espec_-_Bloquear-Desbloquear_desconto_via_API dev: qua:master
parent
537a952dde
commit
0adde4acce
2
pom.xml
2
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue