コード例 #1
0
ファイル: control.php プロジェクト: gianpascal/yachay
 case 'mostrarMaterialesDeLaboratorio':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $resultado = $o_ActionLaboratorio->amostrarMaterialesDeLaboratorio();
     break;
     //29 Enero 2012 jcqa
 //29 Enero 2012 jcqa
 case 'getTratamientoPaciente':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos["iid_persona"] = $parametros["p2"];
     $datos["arrayCod_Ser_Pro"] = $parametros["p3"];
     $datos["hiCodigoFiliacionActiva"] = $parametros["p4"];
     $resultado = $o_ActionLaboratorio->agetTratamientoPaciente($datos);
     break;
 case 'getVinculadosTratamientoPaciente':
     require_once "ActionLaboratorio.php";
     header("Content-type: text/xml");
     $o_ActionLaboratorio = new ActionLaboratorio();
     $datos["iid_persona"] = $parametros["p2"];
     $datos["arrayCod_Ser_Pro"] = $parametros["p3"];
     $datos["hiCodigoFiliacionActiva"] = $parametros["p4"];
     $datos["hServicioConsultorio"] = $parametros["p5"];
     $datos["hServiciosProcedimientos"] = $parametros["p6"];
     $datos["codigoTipoCita"] = $parametros["p7"];
     $resultado = $o_ActionLaboratorio->agetVinculadosTratamientoPaciente($datos);
     break;
 case 'cargarTablaVincularRecetasConTratamientos':
     require_once "ActionLaboratorio.php";