本文整理汇总了PHP中COperation::getAffectation方法的典型用法代码示例。如果您正苦于以下问题:PHP COperation::getAffectation方法的具体用法?PHP COperation::getAffectation怎么用?PHP COperation::getAffectation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类COperation
的用法示例。
在下文中一共展示了COperation::getAffectation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: implode
$sejour->loadRefsFwd();
if ($_print_ipp) {
$sejour->_ref_patient->loadIPP();
}
if ($_print_numdoss) {
$sejour->loadNDA();
}
if ($prestation_id) {
$sejour->loadLiaisonsForPrestation($prestation_id);
}
if ($format_print == "advanced") {
$operation->_liaisons_prestation = implode("|", $sejour->loadAllLiaisonsForDay(CMbDT::date($operation->_datetime_best)));
$ordre_passage_temp[$operation->chir_id][CMbDT::date($operation->_datetime)][$operation->_id] = $operation;
}
// Chargement de l'affectation
$affectation = $operation->getAffectation();
if ($affectation->_id) {
$affectation->loadRefLit()->loadCompleteView();
}
$sejour->_ref_first_affectation = $affectation;
// Chargement des ressources si gestion du materiel en mode expert
if ($_materiel && CAppUI::conf("dPbloc CPlageOp systeme_materiel") == "expert") {
$operation->loadRefsBesoins();
foreach ($operation->_ref_besoins as $_besoin) {
$_besoin->_available = $_besoin->isAvailable();
}
}
}
if (count($listOp) == 0 && !$filter->_plage) {
unset($plagesop[$plage->_id]);
continue;