You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mwl/README.md
+16-4Lines changed: 16 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,10 +161,22 @@ uv run pytest tests/integration/test_request_cfind_on_worklist.py -v
161
161
162
162
## Worklist item status transitions
163
163
164
-
```
165
-
SCHEDULED ──(first C-STORE)──▶ IN PROGRESS ──(MPPS N-SET)──▶ COMPLETED
166
-
│
167
-
└────────(MPPS N-SET)──▶ DISCONTINUED
164
+
```mermaid
165
+
stateDiagram-v2
166
+
direction LR
167
+
state "IN PROGRESS" as IP
168
+
169
+
[*] --> SCHEDULED
170
+
SCHEDULED --> IP: (first C-STORE)
171
+
172
+
state fork_state <<fork>>
173
+
IP --> fork_state: (MPPS N-SET)
174
+
175
+
fork_state --> COMPLETED
176
+
fork_state --> DISCONTINUED
177
+
178
+
COMPLETED --> [*]
179
+
DISCONTINUED --> [*]
168
180
```
169
181
170
182
See [ADR-003: Separate containers for PACS and MWL](../adr/ADR-003_Separate_containers_for_PACS_and_MWL.md) and [ADR-004: Daily backup and reset of the MWL database](../adr/ADR-004_MWL_Daily_Backup_And_Reset.md) for architectural decisions.
0 commit comments