diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index 4d171b8ab..76b1baf74 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -227,6 +227,8 @@ public class Empresa implements Serializable { @Column(name = "INDIMPRIME2VIASIMPRENAOFISCAL") private Boolean indImprime2ViasImpreNaoFiscal; + @Column(name = "INDEXIBEDIFMENORTROCACEECF") + private Boolean indExibeDiferencaMenorTrocaCupomEmbarqueEcf; public Empresa() { super(); @@ -865,6 +867,14 @@ public class Empresa implements Serializable { public void setIndImprime2ViasDevolucao(Boolean indImprime2ViasDevolucao) { this.indImprime2ViasDevolucao = indImprime2ViasDevolucao; } + + public Boolean getIndExibeDiferencaMenorTrocaCupomEmbarqueEcf() { + return indExibeDiferencaMenorTrocaCupomEmbarqueEcf; + } + + public void setIndExibeDiferencaMenorTrocaCupomEmbarqueEcf(Boolean indExibeDiferencaMenorTrocaCupomEmbarqueEcf) { + this.indExibeDiferencaMenorTrocaCupomEmbarqueEcf = indExibeDiferencaMenorTrocaCupomEmbarqueEcf; + } }