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


PHP CSejour::loadRefsDocItems方法代碼示例

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


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

示例1: array

    $params = array("dossier_anesth_id" => $_interv->_ref_consult_anesth->_id, "operation_id" => $_interv->_id, "offline" => 1, "print" => 1, "pdf" => 0);
    $fiches_anesthesies[$_interv->_id] = CApp::fetch("dPcabinet", "print_fiche", $params);
}
if ($offline && CModule::getActive("forms")) {
    $params = array("detail" => 3, "reference_id" => $sejour->_id, "reference_class" => $sejour->_class, "target_element" => "ex-objects-{$sejour->_id}", "print" => 1, "limit" => $forms_limit);
    $formulaires = CApp::fetch("forms", "ajax_list_ex_object", $params);
}
// L'appel à print_fiche écrase les interventions du dossier d'anesthésie.
// Il faut charger le suivi médical à posteriori
$cibles = array();
$last_trans_cible = array();
$users = array();
$sejour->loadSuiviMedical($datetime_min, null, $cibles, $last_trans_cible, $user_id = null, $users, 1);
if ($embed) {
    // Fichiers et documents du sejour
    $sejour->loadRefsDocItems(false);
    // Fichiers et documents des interventions
    $interventions = $sejour->_ref_operations;
    foreach ($interventions as $_interv) {
        $_interv->loadRefPlageOp();
        $_interv->loadRefsDocItems(false);
    }
    // Fichiers et documents des consultations
    $consultations = $sejour->loadRefsConsultations();
    foreach ($consultations as $_consult) {
        $_consult->loadRefsDocItems(false);
    }
    $sejour->_ref_consult_anesth->_ref_consultation->loadRefsDocItems(false);
    $sejour->_ref_consult_anesth->loadRefsDocItems(false);
}
// Chargement du patient
開發者ID:OpenXtrem,項目名稱:mediboard-test,代碼行數:31,代碼來源:print_dossier_soins.php

示例2: CService

 * @license    GNU General Public License, see http://www.gnu.org/licenses/gpl.html
 * @version    $Revision: 28613 $
 */
CCanDo::checkRead();
$group_id = CGroups::loadCurrent()->_id;
$sejour_id = CValue::getOrSession("sejour_id");
$user = CMediusers::get();
$prats = $user->loadPraticiens(PERM_READ);
$service = new CService();
$where = array("group_id" => "= '{$group_id}'");
$order = "nom";
$services = $service->loadListWithPerms(PERM_READ, $where, $order);
$sejour = new CSejour();
$sejour->load($sejour_id);
$sejour->loadRefsNotes();
$sejour->loadRefsDocItems();
if ($sejour_id && !$sejour->_id) {
    CAppUI::setMsg(CAppUI::tr("CSejour-unavailable"), UI_MSG_WARNING);
    CAppUI::redirect("m=ssr&tab=vw_aed_sejour&sejour_id=0");
}
$fiche_autonomie = new CFicheAutonomie();
$patient = new CPatient();
$bilan = new CBilanSSR();
$prescription = null;
$lines = array();
$medecin_adresse_par = "";
$correspondantsMedicaux = array();
if ($sejour->_id) {
    $sejour->loadRefPatient();
    $sejour->loadNDA();
    // Chargement du patient
開發者ID:fbone,項目名稱:mediboard4,代碼行數:31,代碼來源:vw_aed_sejour_ssr.php


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