Skip to content

Commit

Permalink
docs: 🏗️ LPR2 creation as own diagram (#151)
Browse files Browse the repository at this point in the history
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
lwjohnst86 authored Dec 18, 2024
1 parent 86a69e9 commit 95cabfe
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
32 changes: 32 additions & 0 deletions vignettes/images/create-lpr2.puml
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
1 change: 1 addition & 0 deletions vignettes/images/create-lpr2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion vignettes/images/function-flow-population.puml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ hide <<exclusion>> stereotype
database bef
}
together {
action "join_lpr2()" as lpr2
action "create_lpr2()" as lpr2
action "join_lpr3()" as lpr3
}

Expand Down
Loading

0 comments on commit 95cabfe

Please sign in to comment.