Create And Update Account

This commit is contained in:
efrilm
2025-09-12 20:35:49 +07:00
parent ce344e4a98
commit b2840ca27c
4 changed files with 202 additions and 91 deletions
+52
View File
@@ -0,0 +1,52 @@
import { useMutation, useQueryClient } from '@tanstack/react-query'
import { toast } from 'react-toastify'
import { api } from '../api'
import { AccountRequest } from '../queries/chartOfAccountType'
export const useAccountsMutation = () => {
const queryClient = useQueryClient()
const createAccount = useMutation({
mutationFn: async (newAccount: AccountRequest) => {
const response = await api.post('/accounts', newAccount)
return response.data
},
onSuccess: () => {
toast.success('Account created successfully!')
queryClient.invalidateQueries({ queryKey: ['accounts'] })
},
onError: (error: any) => {
toast.error(error.response?.data?.errors?.[0]?.cause || 'Create failed')
}
})
const updateAccount = useMutation({
mutationFn: async ({ id, payload }: { id: string; payload: AccountRequest }) => {
const response = await api.put(`/accounts/${id}`, payload)
return response.data
},
onSuccess: () => {
toast.success('Account updated successfully!')
queryClient.invalidateQueries({ queryKey: ['accounts'] })
},
onError: (error: any) => {
toast.error(error.response?.data?.errors?.[0]?.cause || 'Update failed')
}
})
const deleteAccount = useMutation({
mutationFn: async (id: string) => {
const response = await api.delete(`/accounts/${id}`)
return response.data
},
onSuccess: () => {
toast.success('Account deleted successfully!')
queryClient.invalidateQueries({ queryKey: ['accounts'] })
},
onError: (error: any) => {
toast.error(error.response?.data?.errors?.[0]?.cause || 'Delete failed')
}
})
return { createAccount, updateAccount, deleteAccount }
}
@@ -34,3 +34,12 @@ export function useChartOfAccountTypes(params: ChartOfAccountQueryParams = {}) {
}
})
}
export interface AccountRequest {
chart_of_account_id: string
name: string
number: string
account_type: string
opening_balance: number
description: string
}