From d7f069a6599d6d00da9a6d63e1abcb1a2b885d22 Mon Sep 17 00:00:00 2001 From: Lucas Date: Wed, 28 Aug 2024 16:55:03 -0300 Subject: [PATCH] AL-4466 --- pom.xml | 2 +- .../ventaboletos/entidad/TipoEventoExtra.java | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 00fa39872..6eb5324c6 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.101.0 + 1.102.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/TipoEventoExtra.java b/src/com/rjconsultores/ventaboletos/entidad/TipoEventoExtra.java index 384a86e45..ddd694345 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/TipoEventoExtra.java +++ b/src/com/rjconsultores/ventaboletos/entidad/TipoEventoExtra.java @@ -129,6 +129,10 @@ public class TipoEventoExtra implements Serializable { @OneToOne @JoinColumn(name = "IMPRESIONLAYOUTCONFIG_ID") private ImpresionLayoutConfig impresionLayoutConfig; + + @OneToOne + @JoinColumn(name = "IMPRESIONLAYOUTEMAILCONFIG_ID") + private ImpresionLayoutConfig impresionLayoutEmailConfig; public TipoEventoExtraEmpresa addEmpresa(Empresa e) { TipoEventoExtraEmpresa t = new TipoEventoExtraEmpresa(); @@ -457,7 +461,14 @@ public class TipoEventoExtra implements Serializable { public void setIndQuantViasImp(Integer indQuantViasImp) { this.indQuantViasImp = indQuantViasImp; } + + public ImpresionLayoutConfig getImpresionLayoutEmailConfig() { + return impresionLayoutEmailConfig; + } + public void setImpresionLayoutEmailConfig(ImpresionLayoutConfig impresionLayoutEmailConfig) { + this.impresionLayoutEmailConfig = impresionLayoutEmailConfig; + } @Override public int hashCode() {