當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CPatient::loadRefsCorrespondantsPatient方法代碼示例

本文整理匯總了PHP中CPatient::loadRefsCorrespondantsPatient方法的典型用法代碼示例。如果您正苦於以下問題:PHP CPatient::loadRefsCorrespondantsPatient方法的具體用法?PHP CPatient::loadRefsCorrespondantsPatient怎麽用?PHP CPatient::loadRefsCorrespondantsPatient使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CPatient的用法示例。


在下文中一共展示了CPatient::loadRefsCorrespondantsPatient方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: CPatient

/**
 * $Id: ajax_list_assurances.php 19840 2013-07-09 19:36:14Z phenxdesign $
 *
 * @package    Mediboard
 * @subpackage PlanningOp
 * @author     SARL OpenXtrem <dev@openxtrem.com>
 * @license    GNU General Public License, see http://www.gnu.org/licenses/gpl.html
 * @version    $Revision: 19840 $
 */
CCanDo::checkRead();
$sejour_id = CValue::get("sejour_id");
$patient_id = CValue::get("patient_id");
// Chargement du patient
$patient = new CPatient();
$patient->load($patient_id);
$patient->loadRefsCorrespondantsPatient();
// On récupére le séjour
$sejour = new CSejour();
if ($sejour_id) {
    $sejour->load($sejour_id);
    // On vérifie que l'utilisateur a les droits sur le sejour
    if (!$sejour->_canRead) {
        global $m, $tab;
        CAppUI::setMsg("Vous n'avez pas accés à ce séjour", UI_MSG_WARNING);
        CAppUI::redirect("m={$m}&tab={$tab}&sejour_id=0");
    }
    $patient = $sejour->_ref_patient;
} else {
    $sejour->patient_id = $patient->_id;
    $sejour->_ref_patient = $patient;
}
開發者ID:fbone,項目名稱:mediboard4,代碼行數:31,代碼來源:ajax_list_assurances.php

示例2: loadRefPatient

 /**
  * Chargement du patient concerné par la facture
  *
  * @param bool $cache cache
  *
  * @return CPatient
  **/
 function loadRefPatient($cache = 1)
 {
     if (!$this->_ref_patient) {
         $this->_ref_patient = $this->loadFwdRef("patient_id", $cache);
         $this->_ref_patient->loadRefsCorrespondantsPatient();
     }
     return $this->_ref_patient;
 }
開發者ID:fbone,項目名稱:mediboard4,代碼行數:15,代碼來源:CFacture.class.php

示例3: foreach

 /**
  * Represents an HL7 NK1 message segment (Next of Kin / Associated Parties)
  *
  * @param CPatient $patient Patient
  *
  * @return void
  */
 function addNK1s(CPatient $patient)
 {
     $i = 1;
     foreach ($patient->loadRefsCorrespondantsPatient() as $_correspondant) {
         /** @var CHL7v2SegmentNK1 $NK1 */
         $NK1 = CHL7v2Segment::create("NK1", $this->message);
         $NK1->set_id = $i;
         $NK1->correspondant = $_correspondant;
         $NK1->build($this);
         $i++;
     }
 }
開發者ID:OpenXtrem,項目名稱:mediboard-test,代碼行數:19,代碼來源:CHL7v2EventADT.class.php


注:本文中的CPatient::loadRefsCorrespondantsPatient方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。