parent
a1cf720c1b
commit
ff79cf842c
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.11.1</version>
|
||||
<version>1.11.2</version>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>rj-releases</id>
|
||||
|
|
|
@ -130,7 +130,6 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
@Column(name = "INDVENDEBILHETESEMELHANTE")
|
||||
private Boolean indVendeDeBilheteSemelhante;
|
||||
|
||||
|
||||
@OneToMany(mappedBy = "empresa")
|
||||
private List<InscricaoEstadual> inscricoesEstaduais;
|
||||
|
||||
|
@ -418,6 +417,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
@Column(name = "LONGITUDE ")
|
||||
private Float longitude;
|
||||
|
||||
@Column(name = "INDTAXACONVENIENCIASOVENDA")
|
||||
private Boolean indTaxaConvenienciaSoVenda;
|
||||
|
||||
@Transient
|
||||
@NaoAuditar
|
||||
private Empresa empresaClone;
|
||||
|
@ -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