-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: 🏗️ LPR2 creation as own diagram (#151)
There were too many things going on with this so I split out it. This is based on the changes @Aastedet did in #133
- Loading branch information
1 parent
86a69e9
commit 95cabfe
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
@startuml create-lpr2 | ||
!theme cerulean-outline | ||
<style> | ||
action, card, database, rectangle { | ||
FontColor black | ||
} | ||
</style> | ||
|
||
together { | ||
database lpr_diag | ||
database lpr_adm | ||
} | ||
|
||
action "keep_needed_diagnosis_code()" as code | ||
action "keep_needed_diagnosis_type()" as type | ||
action "join_lpr2()" as join | ||
action "get_department()" as gd | ||
action "get_t1d()" as t1d | ||
action "get_t2d()" as t2d | ||
action "get_primary_diagnosis()" as gpd | ||
|
||
lpr_diag --> code | ||
code --> type | ||
type --> join | ||
lpr_adm --> join | ||
join --> gd | ||
gd --> t1d | ||
t1d --> t2d | ||
t2d --> gpd | ||
} | ||
|
||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.