Esempio n. 1
0
     $resultado = $o_ActionCaja->menuMostrarReportePorNroCaja();
     break;
 case 'reporteCajaPorCajero':
     require_once "ActionCaja.php";
     $o_ActionCaja = new ActionCaja();
     $datos["codCaja"] = $parametros["p2"];
     $datos["txtFechaIni"] = $parametros["p3"];
     $datos["txtFechaFinal"] = $parametros["p4"];
     $datos["fila"] = $parametros["p5"];
     $resultado = $o_ActionCaja->reporteCajaPorCajero($datos);
     break;
 case 'eliminarAsistencia':
     require_once "ActionRrhh.php";
     $o_ActionRrhh = new ActionRrhh();
     $datos["idHorarioAsistencia"] = $parametros["p2"];
     $resultado = $o_ActionRrhh->eliminarAsistencia($datos);
     break;
 case 'exportarExcelEncargadosMorosos':
     require_once "ActionRrhh.php";
     $o_ActionRrhh = new ActionRrhh();
     $datos["cboAnio"] = $parametros["p2"];
     $datos["cboMes"] = $parametros["p3"];
     $resultado = $o_ActionRrhh->exportarExcelEncargadosMorosos($datos);
     break;
 case 'presentacionTurnos':
     require_once "ActionMantenimientoGeneral.php";
     $o_ActionMantenimientoGeneral = new ActionMantenimientoGeneral();
     $datos["tipoHorarioTurno"] = $parametros["p2"];
     $resultado = $o_ActionMantenimientoGeneral->presentacionTurnos($datos);
     break;
 case 'CargarArea':