diff --git a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java index 0a936052d..499c8e354 100644 --- a/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java +++ b/src/com/rjconsultores/ventaboletos/utilerias/ApplicationProperties.java @@ -279,4 +279,9 @@ public class ApplicationProperties { String property = p.getProperty("permiteLayoutInternacional", "0"); return property.equals("1"); } + + public boolean relatorioTaxasLinhaTxtDownloadVisible() { + String property = p.getProperty("taxasLinhaTxtDownloadVisible", "0"); + return property.equals("1"); + } }