本文整理汇总了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;
}
示例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;
}
示例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++;
}
}