fixes bug#2908

master
wallace.henrique 2023-07-11 18:09:53 -03:00
parent fab387d9be
commit 573c5361c8
2 changed files with 3 additions and 3 deletions

View File

@ -4,11 +4,11 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ventaboletosadm</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
<packaging>war</packaging>
<properties>
<modelWeb.version>1.6.11</modelWeb.version>
<modelWeb.version>1.6.12</modelWeb.version>
<flyway.version>1.5.2</flyway.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

View File

@ -76,7 +76,7 @@ public class RenderConfRestricaoCanalVenta implements ListitemRenderer {
private String buscarDescricaoVigencia(ConfRestricaoCanalVenta confRestricaoCanalVenta) {
if(confRestricaoCanalVenta.getFeciniciovigencia()!= null || confRestricaoCanalVenta.getFecfinvigencia()!= null) {
return "De "+ sdf.format(confRestricaoCanalVenta.getFeciniciovigencia()) + " até " + sdf.format(confRestricaoCanalVenta.getFecfinvigencia());
return "De "+ sdf.format(confRestricaoCanalVenta.getFeciniciovigencia()) + " até " + sdf.format(confRestricaoCanalVenta.getFecfinvigencia());
}
return " - ";
}