コード例 #1
0
ファイル: control.php プロジェクト: gianpascal/yachay
     $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";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $idPuntoControl = $parametros["p2"];
     $nombrePuntoControl = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aVerRecibirPuntoControl($idPuntoControl, $nombrePuntoControl);
     break;
 case 'verificarRecibirPuntoControl':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos['codigoBarra'] = $parametros["p2"];
     $datos['idPuntoControl'] = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aVerificarRecibirPuntoControl($datos);
     break;
 case 'verificarProcesarPuntoControl':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos['codigoBarra'] = $parametros["p2"];
     $datos['idPuntoControl'] = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aVerificarProcesarPuntoControl($datos);
     break;