当前位置: 首页>>代码示例>>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;未经允许,请勿转载。