wilian 2016-11-11 13:42:00 +00:00
parent 57f28fda51
commit af8bab6c13
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package com.rjconsultores.ventaboletos.service.impl; package com.rjconsultores.ventaboletos.service.impl;
import java.util.Date;
import java.util.List; import java.util.List;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
@ -36,6 +37,7 @@ public class FechamentoParamptovtaServiceImpl implements FechamentoParamptovtaSe
@Override @Override
@Transactional @Transactional
public FechamentoParamptovta actualizacion(FechamentoParamptovta entidad) { public FechamentoParamptovta actualizacion(FechamentoParamptovta entidad) {
entidad.setFecmodif(new Date());
return fechamentoParamptovtaDAO.actualizacion(entidad); return fechamentoParamptovtaDAO.actualizacion(entidad);
} }