feat : écran d'ajout bovin + feed bovin + fix pesées expéditions

This commit is contained in:
2026-04-10 10:29:16 +02:00
parent 6eb2ee2578
commit b45e2d3a95
27 changed files with 788 additions and 403 deletions

View File

@@ -4,6 +4,7 @@ export interface BovineData {
receivedWeight: number | null
arrivalDate: string | null
buildingCase: string | null
supplier: string | null
}
export type BovinePayload = {
@@ -11,4 +12,5 @@ export type BovinePayload = {
receivedWeight?: number | null
arrivalDate?: string | null
buildingCase?: string | null
supplier?: string | null
}