Merge pull request 'bug#al-2803' (!96) from AL2803 into master
Reviewed-on: adm/ModelWeb#96 Reviewed-by: fabio <fabio.faria@rjconsultores.com.br> Reviewed-by: Wilian Domingues <wilian@rjconsultores.com.br>master
commit
a6e0a5a892
3
pom.xml
3
pom.xml
|
@ -3,7 +3,8 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.12.0</version>
|
||||
<version>1.12.1</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>rj-releases</id>
|
||||
|
|
|
@ -129,7 +129,6 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
|
||||
@Column(name = "INDVENDEBILHETESEMELHANTE")
|
||||
private Boolean indVendeDeBilheteSemelhante;
|
||||
|
||||
|
||||
@OneToMany(mappedBy = "empresa")
|
||||
private List<InscricaoEstadual> inscricoesEstaduais;
|
||||
|
@ -417,6 +416,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
|
||||
@Column(name = "LONGITUDE ")
|
||||
private Float longitude;
|
||||
|
||||
@Column(name = "INDTAXACONVENIENCIASOVENDA")
|
||||
private Boolean indTaxaConvenienciaSoVenda;
|
||||
|
||||
@Transient
|
||||
@NaoAuditar
|
||||
|
@ -1550,4 +1552,11 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public Boolean getIndTaxaConvenienciaSoVenda() {
|
||||
return indTaxaConvenienciaSoVenda == null ? false : indTaxaConvenienciaSoVenda;
|
||||
}
|
||||
|
||||
public void setIndTaxaConvenienciaSoVenda(Boolean indTaxaConvenienciaSoVenda) {
|
||||
this.indTaxaConvenienciaSoVenda = indTaxaConvenienciaSoVenda;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue