From c4e22cff5aed2941dcfc6932344dd5452f3f4886 Mon Sep 17 00:00:00 2001 From: frederico Date: Wed, 17 Jan 2018 16:13:57 +0000 Subject: [PATCH] fixed bug #10328 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@78096 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/utilerias/ApplicationProperties.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index 87364b150..b26cf0362 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -175,6 +175,11 @@ public class ApplicationProperties { String property = p.getProperty("validaSobreposicaoVigencia", "0"); return property.equals("1"); } + + public boolean usaCPFComoFidelidade(){ + String property = p.getProperty("usaCPFComoFidelidade", "0"); + return property.equals("1"); + } public boolean exibeTpp() { String property = p.getProperty("exibeTpp", "0"); @@ -246,5 +251,5 @@ public class ApplicationProperties { String property = p.getProperty("exibirPuntoVentaCadastroAIDF", "0"); return property.equals("1"); } - + }