Feat: API Integration supporting doc upload

This commit is contained in:
hasyim_kai
2025-11-13 16:16:26 +07:00
parent b2a512314b
commit 56109564cb
19 changed files with 401 additions and 101 deletions

No files matched your search

@@ -0,0 +1,24 @@
// Handlers
import { genCrudHandler } from '~/handlers/_handler'
// Services
import { create, update, remove } from '~/services/supporting-document.service'
export const {
recId,
recAction,
recItem,
isReadonly,
isProcessing,
isFormEntryDialogOpen,
isRecordConfirmationOpen,
onResetState,
handleActionSave,
handleActionEdit,
handleActionRemove,
handleCancelForm,
} = genCrudHandler({
create,
update,
remove,
})