parent
a1cf720c1b
commit
ff79cf842c
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.11.1</version>
|
<version>1.11.2</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -130,7 +130,6 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "INDVENDEBILHETESEMELHANTE")
|
@Column(name = "INDVENDEBILHETESEMELHANTE")
|
||||||
private Boolean indVendeDeBilheteSemelhante;
|
private Boolean indVendeDeBilheteSemelhante;
|
||||||
|
|
||||||
|
|
||||||
@OneToMany(mappedBy = "empresa")
|
@OneToMany(mappedBy = "empresa")
|
||||||
private List<InscricaoEstadual> inscricoesEstaduais;
|
private List<InscricaoEstadual> inscricoesEstaduais;
|
||||||
|
|
||||||
|
@ -418,6 +417,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "LONGITUDE ")
|
@Column(name = "LONGITUDE ")
|
||||||
private Float longitude;
|
private Float longitude;
|
||||||
|
|
||||||
|
@Column(name = "INDTAXACONVENIENCIASOVENDA")
|
||||||
|
private Boolean indTaxaConvenienciaSoVenda;
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
private Empresa empresaClone;
|
private Empresa empresaClone;
|
||||||
|
@ -1550,4 +1552,11 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
this.longitude = longitude;
|
this.longitude = longitude;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndTaxaConvenienciaSoVenda() {
|
||||||
|
return indTaxaConvenienciaSoVenda == null ? false : indTaxaConvenienciaSoVenda;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndTaxaConvenienciaSoVenda(Boolean indTaxaConvenienciaSoVenda) {
|
||||||
|
this.indTaxaConvenienciaSoVenda = indTaxaConvenienciaSoVenda;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue