feat (soapi): integrate early,rehab,function

This commit is contained in:
Abizrh
2025-10-20 17:33:05 +07:00
parent 1cae6de418
commit cb0d73acf4
15 changed files with 1252 additions and 159 deletions
+24
View File
@@ -0,0 +1,24 @@
// Handlers
import { genCrudHandler } from '~/handlers/_handler'
// Services
import { create, update, remove } from '~/services/soapi-early.service'
export const {
recId,
recAction,
recItem,
isReadonly,
isProcessing,
isFormEntryDialogOpen,
isRecordConfirmationOpen,
onResetState,
handleActionSave,
handleActionEdit,
handleActionRemove,
handleCancelForm,
} = genCrudHandler({
create,
update,
remove,
})