Files
lcbp3/frontend/components/numbering/manual-override-form.tsx
T
admin 11984bfa29
CI Pipeline / build (push) Failing after 12m41s
Build and Deploy / deploy (push) Failing after 2m44s
260322:1648 Correct Coresspondence / Doing RFA / Correct CI
2026-03-22 16:48:12 +07:00

157 lines
5.3 KiB
TypeScript

'use client';
import { useForm } from 'react-hook-form';
import { zodResolver } from '@hookform/resolvers/zod';
import * as z from 'zod';
import { Button } from '@/components/ui/button';
import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage, FormDescription } from '@/components/ui/form';
import { Input } from '@/components/ui/input';
import { toast } from 'sonner';
import { documentNumberingService } from '@/lib/services/document-numbering.service';
import { ManualOverrideDto } from '@/types/dto/numbering.dto';
import { useState } from 'react';
const formSchema = z.object({
projectId: z.coerce.number().min(1, 'Project is required'),
originatorOrganizationId: z.coerce.number().min(1, 'Originator is required'),
recipientOrganizationId: z.coerce.number().min(1, 'Recipient is required'),
correspondenceTypeId: z.coerce.number().min(1, 'Type is required'),
newLastNumber: z.coerce.number().min(1, 'New number is required'),
reason: z.string().min(5, 'Reason must be at least 5 characters'),
resetScope: z.string().optional(),
});
export function ManualOverrideForm({ projectId = 1 }: { projectId?: number | string }) {
const [loading, setLoading] = useState(false);
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema) as any, // eslint-disable-line @typescript-eslint/no-explicit-any -- zod 4 + @hookform/resolvers compat
defaultValues: {
projectId: Number(projectId),
originatorOrganizationId: 0,
recipientOrganizationId: 0,
correspondenceTypeId: 0,
newLastNumber: 0,
reason: '',
resetScope: 'YEAR_2025', // Example, should be dynamic or selected
},
});
async function onSubmit(values: z.infer<typeof formSchema>) {
setLoading(true);
try {
const dto: ManualOverrideDto = {
...values,
resetScope: values.resetScope || 'YEAR_' + new Date().getFullYear(),
};
await documentNumberingService.manualOverride(dto);
toast.success('Manual override applied successfully.');
form.reset();
} catch (_error) {
toast.error('Failed to apply override.');
} finally {
setLoading(false);
}
}
return (
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-4 border p-4 rounded-md mt-4">
<h3 className="text-lg font-medium">Manual Override Sequence</h3>
<p className="text-sm text-gray-500">
Careful: This updates the LAST generated number. Next number will receive +1.
</p>
<div className="grid grid-cols-2 gap-4">
{/* Allow simple text input for IDs for now, ideally Selects from Master Data */}
<FormField
control={form.control}
name="projectId"
render={({ field }) => (
<FormItem>
<FormLabel>Project ID</FormLabel>
<FormControl>
<Input type="number" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="correspondenceTypeId"
render={({ field }) => (
<FormItem>
<FormLabel>Type ID</FormLabel>
<FormControl>
<Input type="number" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="originatorOrganizationId"
render={({ field }) => (
<FormItem>
<FormLabel>Originator Org ID</FormLabel>
<FormControl>
<Input type="number" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="recipientOrganizationId"
render={({ field }) => (
<FormItem>
<FormLabel>Recipient Org ID</FormLabel>
<FormControl>
<Input type="number" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
</div>
<FormField
control={form.control}
name="newLastNumber"
render={({ field }) => (
<FormItem>
<FormLabel>Set Last Number To</FormLabel>
<FormControl>
<Input type="number" {...field} />
</FormControl>
<FormDescription>If you set 99, the next auto-generated number will be 100.</FormDescription>
<FormMessage />
</FormItem>
)}
/>
<FormField
control={form.control}
name="reason"
render={({ field }) => (
<FormItem>
<FormLabel>Reason</FormLabel>
<FormControl>
<Input placeholder="Why are you overriding?" {...field} />
</FormControl>
<FormMessage />
</FormItem>
)}
/>
<Button type="submit" disabled={loading}>
{loading ? 'Applying...' : 'Apply Override'}
</Button>
</form>
</Form>
);
}