feat(FE-316): Add Uniformity form with validation and upload

This commit is contained in:
rstubryan
2025-12-26 16:08:04 +07:00
parent f1227c9dcb
commit 580c357667
4 changed files with 447 additions and 17 deletions
+8
View File
@@ -11,3 +11,11 @@ export type Uniformity = BaseMetadata & {
status: 'CREATED' | 'APPROVED' | 'REJECTED';
uniformity: number;
};
export type CreateUniformityPayload = {
date: string;
location_id: number;
project_flock_kandang_id: number;
kandang_id: number;
files: File;
};