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); }