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