From 79f29d130b49648eeebb9414a913f73f1790e158 Mon Sep 17 00:00:00 2001 From: walace Date: Wed, 28 Mar 2018 21:33:05 +0000 Subject: [PATCH] =?UTF-8?q?Foi=20inserido=20o=20parametro=20para=20a=20JCA?= =?UTF-8?q?=20que=20habilita=20o=20ponto=20de=20venda=20no=20cadastro=20da?= =?UTF-8?q?=20AIDF=20e=20que=20n=C3=A3o=20seja=20obrigatorio?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes bug#10783 dev:julio qua:bruno.silva git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@80379 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/utilerias/ApplicationProperties.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index ba4cd86a2..0baf5b953 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -260,5 +260,8 @@ public class ApplicationProperties { String property = p.getProperty("exibirPuntoVentaCadastroAIDF", "0"); return property.equals("1"); } - + public boolean isPuntoVentaCadastroAIDFObrigatorio() { + String property = p.getProperty("puntoVentaCadastroAIDFObrigatorio", "0"); + return property.equals("1"); + } }