fixes bug#AL-1296
parent
5ea3c94145
commit
5e839fe86c
|
@ -127,9 +127,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "INDEXIGEBPEEXCESSOBAGAGEM")
|
@Column(name = "INDEXIGEBPEEXCESSOBAGAGEM")
|
||||||
private Boolean indExigeBpeExcessoBagagem;
|
private Boolean indExigeBpeExcessoBagagem;
|
||||||
|
|
||||||
// @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;
|
||||||
|
@ -409,8 +409,8 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "INDSEGUNDAVIASEGOPCIONAL")
|
@Column(name = "INDSEGUNDAVIASEGOPCIONAL")
|
||||||
private Boolean indSegundaViaSegOpcional;
|
private Boolean indSegundaViaSegOpcional;
|
||||||
|
|
||||||
// @Column(name = "INDJUROSCREDITO")
|
@Column(name = "INDJUROSCREDITO")
|
||||||
// private Boolean indJurosCredito;
|
private Boolean indJurosCredito;
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
|
@ -1351,13 +1351,13 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem;
|
this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem;
|
||||||
}
|
}
|
||||||
|
|
||||||
// public Boolean getIndVendeDeBilheteSemelhante() {
|
public Boolean getIndVendeDeBilheteSemelhante() {
|
||||||
// return indVendeDeBilheteSemelhante == null ? false: indVendeDeBilheteSemelhante ;
|
return indVendeDeBilheteSemelhante == null ? false: indVendeDeBilheteSemelhante ;
|
||||||
// }
|
}
|
||||||
//
|
|
||||||
// public void setIndVendeDeBilheteSemelhante(Boolean indVendeDeBilheteSemelhante) {
|
public void setIndVendeDeBilheteSemelhante(Boolean indVendeDeBilheteSemelhante) {
|
||||||
// this.indVendeDeBilheteSemelhante = indVendeDeBilheteSemelhante;
|
this.indVendeDeBilheteSemelhante = indVendeDeBilheteSemelhante;
|
||||||
// }
|
}
|
||||||
|
|
||||||
public String getUrlBaseEmpresaSeguro() {
|
public String getUrlBaseEmpresaSeguro() {
|
||||||
return urlBaseEmpresaSeguro;
|
return urlBaseEmpresaSeguro;
|
||||||
|
@ -1520,11 +1520,11 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
this.indSegundaViaSegOpcional = indSegundaViaSegOpcional;
|
this.indSegundaViaSegOpcional = indSegundaViaSegOpcional;
|
||||||
}
|
}
|
||||||
|
|
||||||
// public Boolean getIndJurosCredito() {
|
public Boolean getIndJurosCredito() {
|
||||||
// return indJurosCredito;
|
return indJurosCredito;
|
||||||
// }
|
}
|
||||||
//
|
|
||||||
// public void setIndJurosCredito(Boolean indJurosCredito) {
|
public void setIndJurosCredito(Boolean indJurosCredito) {
|
||||||
// this.indJurosCredito = indJurosCredito;
|
this.indJurosCredito = indJurosCredito;
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,8 +52,8 @@ public class Moneda implements Serializable {
|
||||||
private List<PuntoVenta> puntoVentaList;
|
private List<PuntoVenta> puntoVentaList;
|
||||||
@Column(name = "EQUIVALENCIA_ID")
|
@Column(name = "EQUIVALENCIA_ID")
|
||||||
private String equivalenciaId;
|
private String equivalenciaId;
|
||||||
// @Column(name = "SIGLA")
|
@Column(name = "SIGLA")
|
||||||
// private String sigla;
|
private String sigla;
|
||||||
|
|
||||||
public Moneda() {
|
public Moneda() {
|
||||||
}
|
}
|
||||||
|
@ -159,12 +159,12 @@ public class Moneda implements Serializable {
|
||||||
this.simbolo = simbolo;
|
this.simbolo = simbolo;
|
||||||
}
|
}
|
||||||
|
|
||||||
// public String getSigla() {
|
public String getSigla() {
|
||||||
// return sigla;
|
return sigla;
|
||||||
// }
|
}
|
||||||
//
|
|
||||||
// public void setSigla(String sigla) {
|
public void setSigla(String sigla) {
|
||||||
// this.sigla = sigla;
|
this.sigla = sigla;
|
||||||
// }
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue