Merge pull request 'fixes bug#AL-3351' (!110) from AL-3351 into master
Reviewed-on: adm/ModelWeb#110 Reviewed-by: Julio Heredia <julio@rjconsultores.com.br>master
commit
99daab15d1
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.20.0</version>
|
<version>1.21.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -346,6 +346,9 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
@Column(name = "INDBLOQUEARDESCONTOWEB")
|
@Column(name = "INDBLOQUEARDESCONTOWEB")
|
||||||
private Boolean indBloquearDescontoWEB;
|
private Boolean indBloquearDescontoWEB;
|
||||||
|
|
||||||
|
@Column(name = "INDTAXACONVENIENCIAORGAOCONCEDENTE")
|
||||||
|
private Boolean indTaxaConvenienciaOrgaoConcedente;
|
||||||
|
|
||||||
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
public List<CobrancaAdcPuntoVenta> getCobrancaAdicionalList() {
|
||||||
return cobrancaAdicionalList;
|
return cobrancaAdicionalList;
|
||||||
}
|
}
|
||||||
|
@ -1377,6 +1380,13 @@ public class PuntoVenta implements Serializable, Auditavel<PuntoVenta> {
|
||||||
public void setTempoMaxServicoEmVenda(Integer tempoMaxServicoEmVenda) {
|
public void setTempoMaxServicoEmVenda(Integer tempoMaxServicoEmVenda) {
|
||||||
this.tempoMaxServicoEmVenda = tempoMaxServicoEmVenda;
|
this.tempoMaxServicoEmVenda = tempoMaxServicoEmVenda;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndTaxaConvenienciaOrgaoConcedente() {
|
||||||
|
return indTaxaConvenienciaOrgaoConcedente;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndTaxaConvenienciaOrgaoConcedente(Boolean indTaxaConvenienciaOrgaoConcedente) {
|
||||||
|
this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue