diff --git a/status-patient/components/content.vue b/status-patient/components/content.vue
index 8083b78..64e3593 100644
--- a/status-patient/components/content.vue
+++ b/status-patient/components/content.vue
@@ -56,37 +56,42 @@
{{ item.details_order[0].group_name }}
{{ item.details_sampling[0].group_name }}
|
{{ item.details_process[0].group_name }}
|
{{ item.details_result_verification[0].group_name }}
|
{{ item.details_result_validation[0].group_name }}
|
{{ item.details_print[0].group_name }}
|
@@ -94,15 +99,18 @@
+
\ No newline at end of file
diff --git a/status-patient/components/print-dialog.vue b/status-patient/components/print-dialog.vue
new file mode 100644
index 0000000..cbdc7df
--- /dev/null
+++ b/status-patient/components/print-dialog.vue
@@ -0,0 +1,93 @@
+
+
+
+
+
+ TIMELINE
+
+
+
+
+
+ No Lab
+
+
+ 05600028LAB
+
+
+ Nama Pasien
+
+
+ Ny IMELDA JANICE
+
+
+
+
+
+ SERAH TERIMA INTERNAL
+
+
+
+
+
+ Group
+
+
+
+ LAB
+ PICK UP
+
+
+
+ Janji Hasil
+
+
+ ADMIN 21-08-2024 22:13
+
+
+ Diserahkan oleh
+
+
+ ADMIN 21-08-2024 22:35
+
+
+ Diterima oleh
+
+
+ ADMIN 21-08-2024 22:53
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/status-patient/components/process-dialog.vue b/status-patient/components/process-dialog.vue
new file mode 100644
index 0000000..be0da0d
--- /dev/null
+++ b/status-patient/components/process-dialog.vue
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+ 21-08-2024 16:53
+
+
+
+
+
+ Serum Kuning
+
+
+ 05600027LSK
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/status-patient/components/sample-dialog.vue b/status-patient/components/sample-dialog.vue
new file mode 100644
index 0000000..2c8e0c0
--- /dev/null
+++ b/status-patient/components/sample-dialog.vue
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+ Pembuatan barcode oleh system
+
+
+ 21-08-2024 16:53
+
+
+
+
+
+ Serum Kuning
+
+
+ 05600027LSK
+
+
+
+
+
+
+
+
+
+ Proses oleh admin
+
+
+ 21-08-2024 20:53
+
+
+
+
+
+ Serum Kuning
+
+
+ 05600027LSK
+
+
+
+
+
+
+
+
+
+ Pengambilan sample
+
+
+ 21-08-2024 21:53
+
+
+
+
+
+ Serum Kuning
+
+
+ 05600027LSK
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/status-patient/components/sp_dialog.vue b/status-patient/components/sp_dialog.vue
index 75442bd..c76b883 100644
--- a/status-patient/components/sp_dialog.vue
+++ b/status-patient/components/sp_dialog.vue
@@ -1,9 +1,9 @@
-
+
-
- TIMELINE
+
+ {{ titleDialog(multi_dialog.name) }}
@@ -13,26 +13,27 @@
Ny IMELDA JANICE
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -41,25 +42,23 @@
\ No newline at end of file
diff --git a/status-patient/components/verif-dialog.vue b/status-patient/components/verif-dialog.vue
new file mode 100644
index 0000000..bf0cd76
--- /dev/null
+++ b/status-patient/components/verif-dialog.vue
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+ Admin
+
+
+ 21-08-2024 16:53
+
+
+
+
+
+ SGOT
+
+
+
+
+
+ Admin
+
+
+ 21-08-2024 17:53
+
+
+
+
+
+ SGPT
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/status-patient/modules/store.js b/status-patient/modules/store.js
index 115f616..d5313d3 100644
--- a/status-patient/modules/store.js
+++ b/status-patient/modules/store.js
@@ -157,6 +157,31 @@ const store = {
],
total_page: 1,
sp_dialog: false,
+ print_dialog: false,
+ multi_dialog: {
+ open: false,
+ name: "",
+ },
+ data_order: [
+ {
+ "pemeriksaan": "SGOT",
+ "bruto": 88000,
+ "diskon": 0,
+ "total": 88000,
+ },
+ {
+ "pemeriksaan": "SGPT",
+ "bruto": 88000,
+ "diskon": 0,
+ "total": 88000,
+ },
+ {
+ "pemeriksaan": "TOTAL",
+ "bruto": 176000,
+ "diskon": 0,
+ "total": 176000,
+ },
+ ]
}
},
mutations: {
@@ -165,6 +190,13 @@ const store = {
},
setDialog(state, bool) {
state.sp_dialog = bool;
+ },
+ setPrintDialog(state, bool) {
+ state.print_dialog = bool;
+ },
+ setMultiDialog(state, bool, name) {
+ state.multi_dialog.open = bool;
+ state.multi_dialog.name = name;
}
},
actions: {