Closed GoogleCodeExporter closed 8 years ago
Se modifica la consulta de Historial de Empleados por la siguiente consulta
"select emp.NroEmpleado, emp.Apellido, emp.Nombre, emp.FechaIngreso, teh.Nombre
as Tipo, ehe.Descripcion, ehe.FechaInicio, ehe.FechaFin from
EventosHistorialEmpleado ehe, Empleados emp, TiposEventoHistorial teh where
ehe.IdEmpleado=emp.NroEmpleado and ehe.IdTipoEvento = teh.IdTipoEventoHistorial
and ( ehe.FechaInicio < 'FECHAHASTA' and ehe.FechaFin > 'FECHADESDE')
IFNROEMPLEADO"
El update a la BD es:
UPDATE consultasempleados SET Query="select emp.NroEmpleado, emp.Apellido,
emp.Nombre, emp.FechaIngreso, teh.Nombre as Tipo, ehe.Descripcion,
ehe.FechaInicio, ehe.FechaFin from EventosHistorialEmpleado ehe, Empleados emp,
TiposEventoHistorial teh where ehe.IdEmpleado=emp.NroEmpleado and
ehe.IdTipoEvento = teh.IdTipoEventoHistorial and ( ehe.FechaInicio <
'FECHAHASTA' and ehe.FechaFin > 'FECHADESDE') IFNROEMPLEADO" WHERE
idConsultaEmpleado=31 and Nombre="HISTORIAL DE FUNCIONARIOS"
Original comment by juanga...@gmail.com
on 20 Apr 2011 at 11:18
Se arregla la consulta cambiando el rango de < y > a <= y >=
UPDATE consultasempleados SET Query="select emp.NroEmpleado, emp.Apellido,
emp.Nombre, emp.FechaIngreso, teh.Nombre as Tipo, ehe.Descripcion,
ehe.FechaInicio, ehe.FechaFin from EventosHistorialEmpleado ehe, Empleados emp,
TiposEventoHistorial teh where ehe.IdEmpleado=emp.NroEmpleado and
ehe.IdTipoEvento = teh.IdTipoEventoHistorial and ( ehe.FechaInicio <=
'FECHAHASTA' and ehe.FechaFin >= 'FECHADESDE') IFNROEMPLEADO" WHERE
idConsultaEmpleado=31 and Nombre="HISTORIAL DE FUNCIONARIOS"
Original comment by juanga...@gmail.com
on 21 Apr 2011 at 10:07
Original issue reported on code.google.com by
juanga...@gmail.com
on 20 Apr 2011 at 11:08