Add pesan khusus flow doc

This commit is contained in:
sas.fajri
2026-04-13 14:59:14 +07:00
parent 9a9d4df7ce
commit ba38ba0fc3
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# Pesan Khusus Flow
Flow untuk fitur `Pesan khusus` pada order pasien.
```mermaid
flowchart LR
A["Dashboard"] --> B["Orders"]
B --> C["Order Detail"]
C --> D["Pesan Khusus Page"]
D --> E["Isi pesan tambahan"]
E --> F["Submit form"]
F --> G["POST /Pesankhusus/add_pesan_khusus"]
G --> H["Redirect ke Order Detail"]
```
## Ringkas
- Masuk dari daftar order.
- Buka detail order tertentu.
- Klik `Pesan khusus`.
- Isi instruksi tambahan.
- Simpan ke endpoint upstream.
- Kembali ke detail order.

View File

@@ -67,3 +67,6 @@ This is a proposed route map for the rebuilt app using server-rendered pages plu
- Use fragments for dynamic updates, not full page duplication.
- Avoid the old app habit of making every step a separate top-level page unless it truly helps navigation.
## Related Flows
- [Pesan Khusus Flow](./PESAN_KHUSUS_FLOW.md)