---
title: Dematia Processus
tags: UNC
slideOptions:
transition: fade
theme: white
---
# Processus Dematia PMV1
```graphviz
digraph summary {
graph [fontsize=30];
node [fontsize=30];
edge [fontsize=30];
style=invis
rankdir=TB
nodesep=1
ranksep= 1
parcoursup [shape=box, color=black,fillcolor=yellow,style=filled]
importsup [shape=box3d, color=black,fillcolor=lightblue,style=filled]
parcoursup->importsup [xlabel="import"]
baseprecandidat [label="BDD Unc\n PreCandidat", shape=cylinder, color=black,fillcolor=lightblue,style=filled]
importsup->baseprecandidat [xlabel="écriture"]
dematia_front [label="Dématia Front\nPremière connexion",shape=box3d, color=black,fillcolor=lightblue,style=filled]
basepre [label="BDD Unc\n Pre*", shape=cylinder, color=black,fillcolor=lightblue,style=filled]
baseprecandidat ->dematia_front[xlabel="lecture"]
dematia_front->basepre [xlabel="écriture"]
basescolarix [label="BDD Unc\n Scolarix", shape=cylinder, color=black,fillcolor=lightblue,style=filled]
basescolarix->dematia_front [xlabel="lecture"]
dfront [label="Dématia Front",shape=box3d, color=black,fillcolor=lightblue,style=filled]
dback [label="Dématia Back",shape=box3d, color=black,fillcolor=lightblue,style=filled]
basepre->dfront [xlabel="lecture/écritue"]
basepre->dback [xlabel="lecture/écritue"]
}
```
-----------------------------------------------------------------------
------------
---------
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
```graphviz
digraph summary {
graph [fontsize=30];
node [fontsize=30];
edge [fontsize=30];
style=invis
rankdir=TB
nodesep=7.5
ranksep= 1
graph [splines=ortho]
node [height=3, width=6, fixedsize=true]
front_office [label="dématia front office",shape=box, style=filled, fillcolor=lightblue]
autorise [nojustify=true label="autorisé:\n- login succès\l- campagne ouvert + délai\l- diplômé authorisé\l(importsup ou progression)",shape=diamond, style=filled, fillcolor=lightyellow]
premiere_connexion [label="première connexion\n(pas de dossier dematia actif)",shape=diamond, style=filled, fillcolor=lightyellow]
origine [label="origine",shape=diamond, style=filled, fillcolor=lightyellow]
rejet [label="rejet avec affichage du motif",shape=box, style=filled, fillcolor=lightblue]
creation_pre [nojustify=true label="\n\ncréation pré:\n-étudiant\l-individu\l-historique\l-inscription\l...",shape=cylinder, style=filled, fillcolor=lightblue]
creation_demat [nojustify=true label="création dematia:\n- aspirant\l- dossier\l- inscription\l",shape=cylinder, style=filled, fillcolor=lightblue]
processus_dematia [nojustify=true label="processus dematia\n(pj, rejet...)",shape=component, style=filled, fillcolor=lightblue]
deversement_scolarix [nojustify=true label="déversement dans Scolarix\nà partir des données pré*",shape=cylinder, style=filled, fillcolor=lightblue]
subgraph cluster_1 {
style=filled;
color=lightgrey;
label="\n\n\n\nInitialisation du dossier"
creation_pre->creation_demat
}
front_office->autorise
autorise->premiere_connexion [xlabel="OUI"]
autorise->rejet [xlabel="NON"]
origine->creation_pre[xlabel="①précandidat éxiste\n(candidat parcoursup)"]
origine->creation_pre[xlabel="②progression éxiste\n(candidat unc)"]
creation_demat->processus_dematia
premiere_connexion->origine [xlabel="OUI"]
premiere_connexion->processus_dematia [xlabel="NON"]
processus_dematia->deversement_scolarix
}
```