commitbcfb4c1456Merge:1cbde57975c87dAuthor: Munawwirul Jamal <57973347+munaja@users.noreply.github.com> Date: Mon Nov 17 11:15:14 2025 +0700 Merge pull request #147 from dikstub-rssa/feat/surat-kontrol-135 Feat: Integration Rehab Medik - Surat Kontrol commit975c87d99aMerge:f5820901cbde57Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Nov 17 10:58:10 2025 +0700 Merge branch 'dev' into feat/surat-kontrol-135 commitf582090d18Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Thu Nov 13 11:56:21 2025 +0700 Fix: Refactor surat kontrol commita14c4a5d3cAuthor: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Tue Nov 11 14:21:58 2025 +0700 Fix: Refactor Surat Kontrol CRUD {id} to {code} commit24313adef6Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Fri Nov 7 10:35:46 2025 +0700 Fix: debug back btn in add, edit, detail content page commit59b44b5729Merge:99a61a0db15ec9Author: Muhammad Hasyim Chaidir Ali <68959522+Hasyim-Kai@users.noreply.github.com> Date: Fri Nov 7 09:11:10 2025 +0700 Merge branch 'dev' into feat/surat-kontrol-135 commit99a61a0bf2Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Thu Nov 6 08:06:01 2025 +0700 Feat: add right & bottom label in input base component commitdb48919325Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Wed Nov 5 13:53:43 2025 +0700 Feat: add banner in List if requirement not met commitbd57250f7eAuthor: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Wed Nov 5 13:26:48 2025 +0700 Fix: refactor getDetail url param commita361922e32Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Wed Nov 5 13:19:07 2025 +0700 Feat: Add & integrate add, edit, detail page commit331f4a6b20Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Tue Nov 4 16:56:08 2025 +0700 Feat: Integrate Control Letter commit2275f4dc99Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Oct 27 14:01:58 2025 +0700 Feat: add UI BPJS > Surat Kontrol commit89e0e7a2c8Author: hasyim_kai <muhammad.hasyim.c.a@gmail.com> Date: Mon Oct 27 10:21:59 2025 +0700 Feat: add UI CRUD Surat Kontrol at Rehab Medik > kunjungan > Proses
163 lines
4.8 KiB
Vue
163 lines
4.8 KiB
Vue
<script setup lang="ts">
|
|
import { useRouter } from 'vue-router'
|
|
import type { Patient, genPatientProps } from '~/models/patient'
|
|
import type { ExposedForm } from '~/types/form'
|
|
import type { PatientBase } from '~/models/patient'
|
|
import Action from '~/components/pub/my-ui/nav-footer/ba-dr-su.vue'
|
|
import { genPatient } from '~/models/patient'
|
|
import { PatientSchema } from '~/schemas/patient.schema'
|
|
import { PersonAddressRelativeSchema } from '~/schemas/person-address-relative.schema'
|
|
import { PersonAddressSchema } from '~/schemas/person-address.schema'
|
|
import { PersonContactListSchema } from '~/schemas/person-contact.schema'
|
|
import { PersonFamiliesSchema } from '~/schemas/person-family.schema'
|
|
import { ResponsiblePersonSchema } from '~/schemas/person-relative.schema'
|
|
import { uploadAttachment } from '~/services/patient.service'
|
|
import { getDetail, update } from '~/services/control-letter.service'
|
|
|
|
import {
|
|
// for form entry
|
|
isReadonly,
|
|
isProcessing,
|
|
isFormEntryDialogOpen,
|
|
isRecordConfirmationOpen,
|
|
onResetState,
|
|
handleActionSave,
|
|
handleActionEdit,
|
|
} from '~/handlers/control-letter.handler'
|
|
|
|
import { toast } from '~/components/pub/ui/toast'
|
|
import { withBase } from '~/models/_base'
|
|
import type { Person } from '~/models/person'
|
|
import Confirmation from '~/components/pub/my-ui/confirmation/confirmation.vue'
|
|
import type { ControlLetter } from '~/models/control-letter'
|
|
import { ControlLetterSchema } from '~/schemas/control-letter.schema'
|
|
import { formatDateYyyyMmDd } from '~/lib/date'
|
|
|
|
// #region Props & Emits
|
|
const props = defineProps<{
|
|
callbackUrl?: string
|
|
}>()
|
|
|
|
// form related state
|
|
const controlLetterForm = ref<ExposedForm<any> | null>(null)
|
|
// #endregion
|
|
|
|
// #region State & Computed
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
const encounterId = typeof route.params.id == 'string' ? parseInt(route.params.id) : 0
|
|
const controlLetterId = typeof route.params.control_letter_id == 'string' ? parseInt(route.params.control_letter_id) : 0
|
|
|
|
const isConfirmationOpen = ref(false)
|
|
const controlLetter = ref({})
|
|
|
|
const selectedUnitId = ref<number|null>(null)
|
|
const selectedSpecialistId = ref<number|null>(null)
|
|
const selectedSubSpecialistId = ref<number|null>(null)
|
|
// #endregion
|
|
|
|
// #region Lifecycle Hooks
|
|
onMounted(async () => {
|
|
const result = await getDetail(controlLetterId)
|
|
if (result.success) {
|
|
const responseData = {...result.body.data, date: formatDateYyyyMmDd(result.body.data.date)}
|
|
selectedUnitId.value = responseData?.unit_code
|
|
selectedSpecialistId.value = responseData?.specialist_code
|
|
selectedSubSpecialistId.value = responseData?.subspecialist_code
|
|
|
|
controlLetter.value = responseData
|
|
controlLetterForm.value?.setValues(responseData)
|
|
}
|
|
})
|
|
// #endregion
|
|
|
|
// #region Functions
|
|
function goBack() {
|
|
router.go(-1)
|
|
}
|
|
|
|
async function handleConfirmAdd() {
|
|
const response = await handleActionEdit(
|
|
controlLetterId,
|
|
await composeFormData(),
|
|
() => { },
|
|
() => { },
|
|
toast,
|
|
)
|
|
goBack()
|
|
}
|
|
|
|
async function composeFormData(): Promise<ControlLetter> {
|
|
const [controlLetter,] = await Promise.all([
|
|
controlLetterForm.value?.validate(),
|
|
])
|
|
|
|
const results = [controlLetter]
|
|
const allValid = results.every((r) => r?.valid)
|
|
|
|
// exit, if form errors happend during validation
|
|
if (!allValid) return Promise.reject('Form validation failed')
|
|
|
|
const formData = controlLetter?.values
|
|
formData.encounter_id = encounterId
|
|
return new Promise((resolve) => resolve(formData))
|
|
}
|
|
// #endregion region
|
|
|
|
// #region Utilities & event handlers
|
|
async function handleActionClick(eventType: string) {
|
|
if (eventType === 'submit') {
|
|
isConfirmationOpen.value = true
|
|
}
|
|
|
|
if (eventType === 'back') {
|
|
if (props.callbackUrl) {
|
|
await navigateTo(props.callbackUrl)
|
|
return
|
|
}
|
|
|
|
goBack()
|
|
}
|
|
}
|
|
|
|
function handleCancelAdd() {
|
|
isConfirmationOpen.value = false
|
|
}
|
|
|
|
provide("selectedUnitId", selectedUnitId);
|
|
provide("selectedSpecialistId", selectedSpecialistId);
|
|
provide("selectedSubSpecialistId", selectedSubSpecialistId);
|
|
// #endregion
|
|
|
|
// #region Watchers
|
|
// #endregion
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mb-5 border-b border-b-slate-300 pb-3 text-lg font-semibold xl:text-xl">Update Surat Kontrol</div>
|
|
<AppControlLetterEntryForm
|
|
ref="controlLetterForm"
|
|
:schema="ControlLetterSchema"
|
|
:selected-unit-id="selectedUnitId"
|
|
:selected-specialist-id="selectedSpecialistId"
|
|
:selected-sub-specialist-id="selectedSubSpecialistId"
|
|
/>
|
|
|
|
<div class="my-2 flex justify-end py-2">
|
|
<Action :enable-draft="false" @click="handleActionClick" />
|
|
</div>
|
|
|
|
<Confirmation
|
|
v-model:open="isConfirmationOpen"
|
|
title="Simpan Data"
|
|
message="Apakah Anda yakin ingin menyimpan data ini?"
|
|
confirm-text="Simpan"
|
|
@confirm="handleConfirmAdd"
|
|
@cancel="handleCancelAdd"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
/* component style */
|
|
</style>
|