diff --git a/src/com/rjconsultores/ventaboletos/constantes/Constantes.java b/src/com/rjconsultores/ventaboletos/constantes/Constantes.java index 2f76db3de..c50afd402 100644 --- a/src/com/rjconsultores/ventaboletos/constantes/Constantes.java +++ b/src/com/rjconsultores/ventaboletos/constantes/Constantes.java @@ -48,6 +48,7 @@ public class Constantes { public static String CLAVE_EDITAR_COMISSAO = "COM.RJCONSULTORES.ADMINISTRACION.PUNTOVENTA.EDITARCOMISSAO"; public static String CLAVE_REABRIR_MOVIMENTODIARIO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.COMISSAO.MENU.CONFERENCIACOMISSAO.REABRIRMOVIMENTODIARIO"; public static String CLAVE_ENCERRAR_MOVIMENTODIARIO = "COM.RJCONSULTORES.ADMINISTRACION.GUI.COMISSAO.MENU.CONFERENCIACOMISSAO.ENCERRARMOVIMENTODIARIO"; + public static String CLAVE_GENERA_FOLIOSISTEMA_VTA_INT_IMP_POSTERIOR = "COM.RJCONSULTORES.ADMINISTRACION.GUI.CATALOGO.MENU.EMPRESA.GENERAFOLIOSISTEMAVTAINTIMPPOSTERIOR"; public static final String UTF_8 = "UTF-8"; diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index fb25a83ea..808edb6cf 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -126,6 +126,9 @@ public class Empresa implements Serializable { @OneToMany(mappedBy = "empresa") @Where(clause="ACTIVO=1") private List comEmpConferencias; + + @Column(name = "INDGENNUMFOLIOVTAINTIMPOST") + private Boolean indgennumfoliovtaintimpost; public Empresa() { super(); @@ -481,5 +484,13 @@ public class Empresa implements Serializable { this.indvalidabloqueioecf = indvalidabloqueioecf; } + public Boolean getIndgennumfoliovtaintimpost() { + return indgennumfoliovtaintimpost; + } + + public void setIndgennumfoliovtaintimpost(Boolean indgennumfoliovtaintimpost) { + this.indgennumfoliovtaintimpost = indgennumfoliovtaintimpost; + } + }