本文整理汇总了PHP中CMediusers::massLoadFwdRef方法的典型用法代码示例。如果您正苦于以下问题:PHP CMediusers::massLoadFwdRef方法的具体用法?PHP CMediusers::massLoadFwdRef怎么用?PHP CMediusers::massLoadFwdRef使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CMediusers
的用法示例。
在下文中一共展示了CMediusers::massLoadFwdRef方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$where["sortie"] = "> '{$date}'";
$where["group_id"] = "= '{$group->_id}'";
$where["annule"] = "= '0'";
$order = array();
$order[] = "sortie";
$order[] = "entree";
$step = 30;
$limit = "{$page},{$step}";
/** @var CSejour[] $listSejours */
$count = $sejour->countList($where);
$listSejours = $sejour->loadList($where, $order, $limit);
$patients = CSejour::massLoadFwdRef($listSejours, "patient_id");
$ipps = CPatient::massLoadIPP($patients);
$ndas = CSejour::massLoadNDA($listSejours);
$praticiens = CSejour::massLoadFwdRef($listSejours, "praticien_id");
CMediusers::massLoadFwdRef($praticiens, "function_id");
CSejour::massLoadFwdRef($listSejours, "group_id");
CSejour::massLoadFwdRef($listSejours, "etablissement_sortie_id");
CSejour::massLoadFwdRef($listSejours, "service_sortie_id");
CSejour::massLoadFwdRef($listSejours, "service_sortie_id");
foreach ($listSejours as $_sejour) {
$_sejour->_ref_patient = $patients[$_sejour->patient_id];
$_sejour->loadRefPraticien();
$_sejour->loadExtCodesCCAM();
$_sejour->loadRefsFactureEtablissement();
$_sejour->countActes();
$_sejour->loadRefTraitementDossier();
}
// Création du template
$smarty = new CSmartyDP();
$smarty->assign("date", $date);
示例2: CSmartyDP
$order = "operations.chir_id";
$step = 30;
$limit = "{$page},{$step}";
/** @var COperation[] $horsplages */
$count = $operation->countList($where, null, $ljoin);
$horsplages = $operation->loadList($where, $order, $limit, null, $ljoin);
/** @var CSejour[] $sejours */
$sejours = COperation::massLoadFwdRef($horsplages, "sejour_id");
/** @var CPatient[] $patients */
$patients = CSejour::massLoadFwdRef($sejours, "patient_id");
CSejour::massLoadNDA($sejours);
CPatient::massLoadIPP($patients);
CSejour::massCountDocItems($sejours);
COperation::massCountDocItems($horsplages);
$chirurgiens = COperation::massLoadFwdRef($horsplages, "chir_id");
CMediusers::massLoadFwdRef($chirurgiens, "function_id");
foreach ($horsplages as $_operation) {
$_operation->loadRefChir()->loadRefFunction();
$_operation->loadExtCodesCCAM();
$_operation->loadRefsDocItems();
$_operation->_ref_sejour = $sejours[$_operation->sejour_id];
$_operation->_ref_sejour->_ref_patient = $patients[$_operation->_ref_sejour->patient_id];
$_operation->_ref_sejour->loadRefsDocItems();
}
// Création du template
$smarty = new CSmartyDP();
$smarty->assign("date", $date);
$smarty->assign("urgences", $horsplages);
$smarty->assign("pageUrg", $page);
$smarty->assign("countUrg", $count);
$smarty->assign("step", $step);