diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index 5c6cb2439..ae2632b31 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -294,4 +294,9 @@ public class ApplicationProperties { String property = p.getProperty("incluiTipoPagamentoTurismoBGM", "0"); return property.equals("1"); } + + public boolean isGerarTrechoAutomaticoDefaultNao() { + String property = p.getProperty("gerarTrechoAutomaticoDefaultNao", "0"); + return property.equals("1"); + } }