示例#1
0
     header("Content-type: text/xml");
     $o_ActionUsuario = new ActionUsuario();
     $resultado = $o_ActionUsuario->cargarTablaPacientes();
     break;
 case 'indicadorLaboratorioClinicoListaExamenes':
     require_once "ActionReporte.php";
     header("Content-type: text/xml");
     $o_ActionReporte = new ActionReporte();
     $resultado = $o_ActionReporte->aindicadorLaboratorioClinicoListaExamenes();
     break;
 case 'anularExamenPaciente':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos["idCodExamen"] = $parametros["p2"];
     $resultado = $o_ActionLaboratorio->anularExamenPaciente($datos);
     break;
 case 'reprogramarExamen':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos["idCodExamen"] = $parametros["p2"];
     $resultado = $o_ActionLaboratorio->AreprogramarExamen($datos);
     break;
 case 'agregarPuntoControlBoton':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos = array();
     $datos["hidPuntoControlExamenLab"] = $parametros["p2"];
     $datos["estadoBoton"] = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->AgregarPuntoControlBoton($datos);