fixes bug#AL-1936
parent
aefa7a5488
commit
e107ef7737
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.0.14</version>
|
||||
<version>1.0.15</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -1440,7 +1440,8 @@ public class CorridaServiceImpl implements CorridaService {
|
|||
|
||||
if (DateUtil.compareOnlyDate(dataAte, esquemaCorrida.getEsquemaOperacional().getFecfinvigencia()) > 0) {
|
||||
log.info("Cant dias excede final de la vigencia");
|
||||
dataAte = esquemaCorrida.getEsquemaOperacional().getFecfinvigencia();
|
||||
Date dataAteEsquema = esquemaCorrida.getEsquemaOperacional().getFecfinvigencia();
|
||||
dataAte = DateUtil.normalizarToFecha(dataAteEsquema);
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue