当前位置: 首页>>代码示例>>PHP>>正文


PHP CPatient::checkSimilar方法代码示例

本文整理汇总了PHP中CPatient::checkSimilar方法的典型用法代码示例。如果您正苦于以下问题:PHP CPatient::checkSimilar方法的具体用法?PHP CPatient::checkSimilar怎么用?PHP CPatient::checkSimilar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CPatient的用法示例。


在下文中一共展示了CPatient::checkSimilar方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: checkSimilarPatient

 /**
  * Check similar person
  *
  * @param CPatient $recoveredPatient Person recovered
  * @param CPatient $newPatient       Person
  *
  * @return bool
  */
 function checkSimilarPatient(CPatient $recoveredPatient, CPatient $newPatient)
 {
     return $recoveredPatient->checkSimilar($newPatient->nom, $newPatient->prenom, false);
 }
开发者ID:OpenXtrem,项目名称:mediboard-test,代码行数:12,代码来源:CHL7v2RecordPerson.class.php

示例2: checkSimilarPatient

 /**
  * Vérifier si les patients sont similaires
  *
  * @param CPatient $mbPatient  Patient
  * @param DOMNode  $xmlPatient Patient provenant des données XML
  *
  * @return string
  */
 function checkSimilarPatient(CPatient $mbPatient, $xmlPatient)
 {
     $sender = $this->_ref_sender;
     if (!$sender->_configs || isset($sender->_configs) && array_key_exists("check_similar", $sender->_configs) && !$sender->_configs["check_similar"]) {
         return null;
     }
     $xpath = new CHPrimXPath($xmlPatient->ownerDocument);
     // Création de l'element personnePhysique
     $personnePhysique = $xpath->queryUniqueNode("hprim:personnePhysique", $xmlPatient);
     $nom = $xpath->queryTextNode("hprim:nomUsuel", $personnePhysique);
     $prenoms = $xpath->getMultipleTextNodes("hprim:prenoms/*", $personnePhysique);
     $prenom = CMbArray::get($prenoms, 0);
     $commentaire = null;
     if (!$mbPatient->checkSimilar($nom, $prenom)) {
         $commentaire = "Le nom ({$nom}/{$mbPatient->nom}) et/ou le prénom ({$prenom}/{$mbPatient->prenom}) sont très différents.";
     }
     return $commentaire;
 }
开发者ID:fbone,项目名称:mediboard4,代码行数:26,代码来源:CHPrimXMLEvenementsPatients.class.php

示例3: CPatient

CCanDo::checkRead();
$patient_id = CValue::get("patient_id");
$nom = CValue::get("nom");
$nom_jeune_fille = CValue::get("nom_jeune_fille");
$prenom = CValue::get("prenom");
$prenom_2 = CValue::get("prenom_2");
$prenom_3 = CValue::get("prenom_3");
$prenom_4 = CValue::get("prenom_4");
$naissance = CValue::get("naissance", "0000-00-00");
$submit = CValue::get("submit", 0);
$json_result = CValue::get("json_result");
$similar = true;
$old_patient = new CPatient();
$old_patient->load($patient_id);
if ($patient_id && $nom && $prenom) {
    $similar = $old_patient->checkSimilar($nom, $prenom);
}
$patientMatch = new CPatient();
$patientMatch->patient_id = $patient_id;
if (CAppUI::conf('dPpatients CPatient function_distinct')) {
    $function_id = CMediusers::get()->function_id;
    $patientMatch->function_id = $function_id;
}
$patientMatch->nom = $nom;
$patientMatch->nom_jeune_fille = $nom_jeune_fille;
$patientMatch->prenom = $prenom;
$patientMatch->prenom_2 = $prenom_2;
$patientMatch->prenom_3 = $prenom_3;
$patientMatch->prenom_4 = $prenom_4;
$patientMatch->naissance = $naissance;
$doubloon = implode("|", $patientMatch->getDoubloonIds());
开发者ID:OpenXtrem,项目名称:mediboard-test,代码行数:31,代码来源:ajax_get_siblings.php


注:本文中的CPatient::checkSimilar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。