From 0654b60d2dec99d5eba28f156f6e0c430a87a097 Mon Sep 17 00:00:00 2001 From: "daniel.zauli" Date: Fri, 23 Sep 2016 13:45:58 +0000 Subject: [PATCH] fixes bug #07962 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@60629 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/utilerias/ApplicationProperties.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index 170321347..cd5859788 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -165,6 +165,11 @@ public class ApplicationProperties { return property.equals("1"); } + public boolean calculoPeajeReunidasANTT() { + String property = p.getProperty("calculoPeajeReunidasANTT", "0"); + return property.equals("1"); + } + public Integer maxSizeNumCorrida(){ String property = p.getProperty("maxSizeNumCorrida", "-1"); return Integer.parseInt(property);