Merge branch 'dev' into feat/consultation-82

This commit is contained in:
2025-10-19 06:27:59 +07:00
147 changed files with 5581 additions and 1460 deletions

No files matched your search

+2 -1
View File
@@ -28,12 +28,13 @@ if (!hasAccess) {
// Define permission-based computed properties
const canRead = hasReadAccess(roleAccess)
const callbackUrl = route.query['return-path'] as string | undefined
</script>
<template>
<div>
<div v-if="canRead">
<ContentPatientEntry />
<ContentPatientEntry :callback-url="callbackUrl" />
</div>
<Error
v-else
@@ -0,0 +1,42 @@
<script setup lang="ts">
// import type { PagePermission } from '~/models/role'
import Error from '~/components/pub/my-ui/error/error.vue'
// import { PAGE_PERMISSIONS } from '~/lib/page-permission'
definePageMeta({
// middleware: ['rbac'],
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
title: 'Daftar Diagnosis',
contentFrame: 'cf-container-lg',
})
const route = useRoute()
useHead({
title: () => route.meta.title as string,
})
// const roleAccess: PagePermission = PAGE_PERMISSIONS['/patient']
// const { checkRole, hasReadAccess } = useRBAC()
// // Check if user has access to this page
// const hasAccess = checkRole(roleAccess)
// if (!hasAccess) {
// navigateTo('/403')
// }
// Define permission-based computed properties
// const canRead = hasReadAccess(roleAccess)
const canRead = true
</script>
<template>
<template v-if="canRead">
<ContentDiagnoseSrcList />
</template>
<Error
v-else
:status-code="403"
/>
</template>
@@ -0,0 +1,40 @@
<script setup lang="ts">
// import type { PagePermission } from '~/models/role'
import Error from '~/components/pub/my-ui/error/error.vue'
// import { PAGE_PERMISSIONS } from '~/lib/page-permission'
definePageMeta({
// middleware: ['rbac'],
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
title: 'Medical Checkup',
contentFrame: 'cf-container-lg',
})
const route = useRoute()
useHead({
title: () => route.meta.title as string,
})
// const roleAccess: PagePermission = PAGE_PERMISSIONS['/patient']
// const { checkRole, hasReadAccess } = useRBAC()
// // Check if user has access to this page
// const hasAccess = checkRole(roleAccess)
// if (!hasAccess) {
// navigateTo('/403')
// }
// Define permission-based computed properties
// const canRead = hasReadAccess(roleAccess)
const canRead = true
</script>
<template>
<template v-if="canRead">MCU - SRC</template>
<Error
v-else
:status-code="403"
/>
</template>
@@ -0,0 +1,42 @@
<script setup lang="ts">
// import type { PagePermission } from '~/models/role'
import Error from '~/components/pub/my-ui/error/error.vue'
// import { PAGE_PERMISSIONS } from '~/lib/page-permission'
definePageMeta({
// middleware: ['rbac'],
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
title: 'Daftar Aksi Medis',
contentFrame: 'cf-container-lg',
})
const route = useRoute()
useHead({
title: () => route.meta.title as string,
})
// const roleAccess: PagePermission = PAGE_PERMISSIONS['/patient']
// const { checkRole, hasReadAccess } = useRBAC()
// // Check if user has access to this page
// const hasAccess = checkRole(roleAccess)
// if (!hasAccess) {
// navigateTo('/403')
// }
// Define permission-based computed properties
// const canRead = hasReadAccess(roleAccess)
const canRead = true
</script>
<template>
<template v-if="canRead">
<ContentMedicalActionSrcList />
</template>
<Error
v-else
:status-code="403"
/>
</template>
@@ -0,0 +1,42 @@
<script setup lang="ts">
// import type { PagePermission } from '~/models/role'
import Error from '~/components/pub/my-ui/error/error.vue'
// import { PAGE_PERMISSIONS } from '~/lib/page-permission'
definePageMeta({
// middleware: ['rbac'],
roles: ['doctor', 'nurse', 'admisi', 'pharmacy', 'billing', 'management'],
title: 'Daftar Prosedur',
contentFrame: 'cf-container-lg',
})
const route = useRoute()
useHead({
title: () => route.meta.title as string,
})
// const roleAccess: PagePermission = PAGE_PERMISSIONS['/patient']
// const { checkRole, hasReadAccess } = useRBAC()
// // Check if user has access to this page
// const hasAccess = checkRole(roleAccess)
// if (!hasAccess) {
// navigateTo('/403')
// }
// Define permission-based computed properties
// const canRead = hasReadAccess(roleAccess)
const canRead = true
</script>
<template>
<template v-if="canRead">
<ContentProcedureSrcList />
</template>
<Error
v-else
:status-code="403"
/>
</template>
+37
View File
@@ -0,0 +1,37 @@
import type { Config, RecComponent } from '~/components/pub/my-ui/data-table'
import { defineAsyncComponent } from 'vue'
const action = defineAsyncComponent(() => import('~/components/pub/my-ui/data/dropdown-action-dud.vue'))
export const config: Config = {
cols: [{ width: 120}, {}, {}, { width: 50 }],
headers: [[
{ label: 'No.RM.' },
{ label: 'Nama Pasien' },
{ label: 'Tempat Lahir' },
{ label: '' },
]],
keys: ['number', 'person.name', 'person.birthPlace_regency.name', 'action'],
delKeyNames: [
{ key: 'code', label: 'Kode' },
{ key: 'name', label: 'Nama' },
],
parses: {},
components: {
action(rec, idx) {
const res: RecComponent = {
idx,
rec: rec as object,
component: action,
}
return res
},
},
htmls: {},
}
+67
View File
@@ -0,0 +1,67 @@
export interface Regency {
id: number
code: string
name: string
}
export interface Person {
id: number
name: string
residentIdentityNumber?: string
birthDate?: string
birthPlace_regency_code: string
birthPlace_regency: Regency
}
export interface Patient {
id: number
number: string
person: Person
}
export const regencies: Regency[] = [
{
id: 1,
code: '3522',
name: 'Bojonegoro',
},
{
id: 2,
code: '3579',
name: 'Batu',
},
]
export const people: Person[] = [
{
id: 1,
name: 'Abdul Manap',
residentIdentityNumber: '1234567890',
birthDate: '1990-01-01',
birthPlace_regency_code: '3522',
birthPlace_regency: regencies[0],
},
{
id: 2,
name: 'Abdul Gofur',
residentIdentityNumber: '1234567890',
birthDate: '1990-01-01',
birthPlace_regency_code: '3522',
birthPlace_regency: regencies[1],
},
]
export const data: Patient[] = [
{
id: 1,
number: 'RM-0000001',
person_id: 1,
person: people[0],
},
{
id: 2,
number: 'RM-0000002',
person_id: 2,
person: people[1],
}
]
+8
View File
@@ -0,0 +1,8 @@
<script setup lang="ts">
import { config } from './index.cfg'
import { data } from './index.data'
</script>
<template>
<PubMyUiDataTable v-bind="config" :rows="data" />
</template>