コード例 #1
0
ファイル: control.php プロジェクト: gianpascal/yachay
     $datos["iIdProcesarPuntoControl"] = $parametros["p2"];
     $datos["observacion"] = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aTerminarProceso($datos);
     break;
 case 'recibirProceso':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos["iIdProcesarPuntoControl"] = $parametros["p2"];
     $datos["observacion"] = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aRecibirProceso($datos);
     break;
 case 'mostrarExamenesLaboratorio':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $resultado = $o_ActionLaboratorio->amostrarExamenesLaboratorio();
     break;
 case 'AdjuntoFotoMaterialLaboratorio':
     require_once "ActionLaboratorio.php";
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos = array();
     $datos["idPersona"] = $parametros["p2"];
     $datos["rutaFoto"] = $parametros["p3"];
     $resultado = $o_ActionLaboratorio->aAdjuntoFotoMaterialLaboratorio($datos);
     break;
 case 'cargarTablaUnidadesxTipoxMaterialLaboratorio':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $resultado = $o_ActionLaboratorio->acargarTablaUnidadesxTipoxMaterialLaboratorio($parametros);
     break;