/** * @see parent::countDocs() */ function countDocs() { $nbDocs = parent::countDocs(); if (!$this->_docitems_from_consult) { // Ajout des documents des dossiers d'anesthésie if (!$this->_ref_consultation) { $this->loadRefConsultation(); } $this->_ref_consultation->_docitems_from_dossier_anesth = true; $nbDocs += $this->_ref_consultation->countDocs(); } return $this->_nb_docs = $nbDocs; }