--- title: Název směrnice tags: Směrnice hackmd: /Ya3JeaztS62hIuYN5eWnZQ?both --- # SME-03 Monitorovací kontroly Tak jak jsem pochopil z popisu směrnice – seznam pojmů, popis postupu a procesu ```graphviz digraph smernice { // NASTAVENÍ graph [ fontname="sans-serif" fontsize="10" label="" rankdir="BT" tooltip="\\L" ] // Uzel node [ shape=rect style=rounded fontname="sans-serif" color="black" ]; // Vazba edge [ fontname="sans-serif" fontsize="10" color="blue" dir=both arrowtail="none" arrowhead="normal" ]; // Clusters (Subgraphs) { rank=max visit} { rank=same visitTeam extraVisit plannedVisit } { rank=same project report review } // Uzly poke [ label="podnět"] intern [ label="interní"] extern [ label="externí"] review [ label="Oponentní řízení" ] onsReview [ label="Průběžné oponentní řízení" ] endReview [ label="Závěrečné oponentní řízení" ] extraReview [ label="Mimořádné" ] plannedReview [ label="Plánované" ] indReview [ label="Individuální" ] grpReview [ label="Hromadné" ] report [ label="Posudek" ] inspection [ label="Monitorovací kontrola" ] extraInspection [ label="Mimořádná" ] plannedInspection [ label="Plánovaná" ] visit [ label="Monitorovací návštěva" ] extraVisit [ label="Mimořádná" ] plannedVisit [ label="Plánovaná" ] visitTeam [ label="Monitorovací tým" ] yearPlan [ label="Roční plán" ] project [ label="Project" ] directorOrgUnitImplementation [ label="Ředitel sekce implementace programů" ] orgUnitManagement [ label="Oddělení správy programů" ] orgUnitRealization [ label="Oddělení realizace" ] // Vazby extraInspection -> inspection directorOrgUnitImplementation -> extraInspection [ arrowhead=none label="schvaluje ▲" ] directorOrgUnitImplementation -> yearPlan [ arrowhead=none label="schvaluje ▲" ] orgUnitManagement -> inspection [ arrowhead=none label="připravuje ▲" ] orgUnitRealization -> yearPlan [ arrowhead=none label="připravuje ▲" ] poke -> extraInspection [ arrowhead=none label="vzniká na zálkadě ▲" ] intern -> poke extern -> poke plannedInspection -> inspection review -> inspection visit -> inspection report -> inspection [ arrowhead=none ] inspection -> project [ arrowhead=none ] yearPlan -> inspection [ arrowhead=none ] visitTeam -> visit [ arrowhead=none label="účastní se ▲" ] extraVisit -> visit plannedVisit -> visit onsReview -> review endReview -> review extraReview -> onsReview plannedReview -> onsReview indReview -> endReview grpReview -> endReview } ``` <!-- Dokumentace k diagramům: GraphViz: https://www.graphviz.org/doc/info/ Doménový model: https://mermaid-js.github.io/mermaid/#/classDiagram Flowchart: https://github.com/adrai/flowchart.js/blob/master/README.md <!-- template --> {%hackmd /GUmDFJpNS5iHeMcKj7qoZQ %}