From c86452909a07301477626a0733298c036602e293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aristides=20dos=20Reis=20J=C3=BAnior?= Date: Sat, 11 May 2024 23:44:48 -0300 Subject: [PATCH] fixes bug#AL-4049 --- pom.xml | 2 +- .../ventaboletos/entidad/HistoricoPuntoVenta.java | 15 +++++++++++++++ .../ventaboletos/entidad/PuntoVenta.java | 13 +++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cc441d9e0..4941eb892 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.55.0 + 1.56.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/HistoricoPuntoVenta.java b/src/com/rjconsultores/ventaboletos/entidad/HistoricoPuntoVenta.java index 1b008ad71..251839f19 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/HistoricoPuntoVenta.java +++ b/src/com/rjconsultores/ventaboletos/entidad/HistoricoPuntoVenta.java @@ -57,6 +57,10 @@ public class HistoricoPuntoVenta implements Serializable, Auditavel { @Column(name = "INDPONTOVENDANAOPRESENCIAL") private Boolean indPontoVendaNaoPresencial; + @Column(name = "MOTIVO_BLOQUEIO") + private String motivoBloqueio; + public List getCobrancaAdicionalList() { return cobrancaAdicionalList; } @@ -1399,4 +1402,14 @@ public class PuntoVenta implements Serializable, Auditavel { public void setIndPontoVendaNaoPresencial(Boolean indPontoVendaNaoPresencial) { this.indPontoVendaNaoPresencial = indPontoVendaNaoPresencial; } + + public String getMotivoBloqueio() { + return motivoBloqueio; + } + + public void setMotivoBloqueio(String motivoBloqueio) { + this.motivoBloqueio = motivoBloqueio; + } + + } \ No newline at end of file