- Add bulk XML CFDI upload support (up to 300MB) - Add period selector component for month/year navigation - Fix session persistence on page refresh (Zustand hydration) - Fix income/expense classification based on tenant RFC - Fix IVA calculation from XML (correct Impuestos element) - Add error handling to reportes page - Support multiple CORS origins - Update reportes service with proper Decimal/BigInt handling - Add RFC to tenant view store for proper CFDI classification - Update README with changelog and new features Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
|
|
import { getTenants, createTenant, updateTenant, deleteTenant, type CreateTenantData, type UpdateTenantData } from '@/lib/api/tenants';
|
|
|
|
export function useTenants() {
|
|
return useQuery({
|
|
queryKey: ['tenants'],
|
|
queryFn: getTenants,
|
|
});
|
|
}
|
|
|
|
export function useCreateTenant() {
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation({
|
|
mutationFn: (data: CreateTenantData) => createTenant(data),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['tenants'] });
|
|
},
|
|
});
|
|
}
|
|
|
|
export function useUpdateTenant() {
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation({
|
|
mutationFn: ({ id, data }: { id: string; data: UpdateTenantData }) => updateTenant(id, data),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['tenants'] });
|
|
},
|
|
});
|
|
}
|
|
|
|
export function useDeleteTenant() {
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation({
|
|
mutationFn: (id: string) => deleteTenant(id),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['tenants'] });
|
|
},
|
|
});
|
|
}
|