From 9685ec0ec02881ded41cd05ddcb4fa6a0cc0e6d5 Mon Sep 17 00:00:00 2001 From: "alexandre.lima" Date: Fri, 14 Jul 2017 19:10:55 +0000 Subject: [PATCH] Fixes Bug #0009192 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@71394 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/utilerias/ApplicationProperties.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index d94f11c7a..b64880b93 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -169,6 +169,16 @@ public class ApplicationProperties { return property.equals("1"); } + public boolean validaSobreposicaoVigencia() { + String property = p.getProperty("validaSobreposicaoVigencia", "0"); + return property.equals("1"); + } + + public boolean exibeTpp() { + String property = p.getProperty("exibeTpp", "0"); + return property.equals("1"); + } + public boolean codAnttNaoObrigatorio() { String property = p.getProperty("codAnttNaoObrigatorio", "0"); return property.equals("1");