コード例 #1
0
ファイル: control.php プロジェクト: gianpascal/yachay
     $resultado = $o_ActionLaboratorio->aContenidoProcesarPuntoControl();
     break;
 case 'personasPorPuntoControl':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $idPuntoControl = $parametros["p2"];
     $fecha = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aPersonasPorPuntoControl($idPuntoControl, $fecha);
     break;
 case 'verProcesarPuntoControl':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $idPuntoControl = $parametros["p2"];
     $nombrePuntoControl = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aVerProcesarPuntoControl($idPuntoControl, $nombrePuntoControl);
     break;
 case 'alertaPuntoControlErroneo':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos['fecha'] = $parametros["p2"];
     $datos['nombre'] = $parametros["p3"];
     $datos['afiliacion'] = $parametros["p4"];
     $datos['examen'] = $parametros["p5"];
     $datos['procedencia'] = $parametros["p6"];
     $datos['ubicacion'] = $parametros["p7"];
     $datos['estado'] = $parametros["p8"];
     $resultado = $o_ActionLaboratorio->aAlertaPuntoControlErroneo($datos);
     break;
 case 'verRecibirPuntoControl':
     require_once "ActionLaboratorio.php";