fixed bug #10328
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@78096 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
30983657d1
commit
c4e22cff5a
|
@ -175,6 +175,11 @@ public class ApplicationProperties {
|
||||||
String property = p.getProperty("validaSobreposicaoVigencia", "0");
|
String property = p.getProperty("validaSobreposicaoVigencia", "0");
|
||||||
return property.equals("1");
|
return property.equals("1");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean usaCPFComoFidelidade(){
|
||||||
|
String property = p.getProperty("usaCPFComoFidelidade", "0");
|
||||||
|
return property.equals("1");
|
||||||
|
}
|
||||||
|
|
||||||
public boolean exibeTpp() {
|
public boolean exibeTpp() {
|
||||||
String property = p.getProperty("exibeTpp", "0");
|
String property = p.getProperty("exibeTpp", "0");
|
||||||
|
@ -246,5 +251,5 @@ public class ApplicationProperties {
|
||||||
String property = p.getProperty("exibirPuntoVentaCadastroAIDF", "0");
|
String property = p.getProperty("exibirPuntoVentaCadastroAIDF", "0");
|
||||||
return property.equals("1");
|
return property.equals("1");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue