From af8bab6c13ada6ced11aca9ea2496cdae9302de1 Mon Sep 17 00:00:00 2001 From: wilian Date: Fri, 11 Nov 2016 13:42:00 +0000 Subject: [PATCH] fixes bug #8240 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@62551 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../service/impl/FechamentoParamptovtaServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/service/impl/FechamentoParamptovtaServiceImpl.java b/src/com/rjconsultores/ventaboletos/service/impl/FechamentoParamptovtaServiceImpl.java index 2744e4936..533a9f92a 100644 --- a/src/com/rjconsultores/ventaboletos/service/impl/FechamentoParamptovtaServiceImpl.java +++ b/src/com/rjconsultores/ventaboletos/service/impl/FechamentoParamptovtaServiceImpl.java @@ -1,5 +1,6 @@ package com.rjconsultores.ventaboletos.service.impl; +import java.util.Date; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; @@ -36,6 +37,7 @@ public class FechamentoParamptovtaServiceImpl implements FechamentoParamptovtaSe @Override @Transactional public FechamentoParamptovta actualizacion(FechamentoParamptovta entidad) { + entidad.setFecmodif(new Date()); return fechamentoParamptovtaDAO.actualizacion(entidad); }