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

@@ -1,9 +1,17 @@
import type { BuildingCaseStatusData } from '~/services/dto/building-case-status-data'
import type { BovineData } from '~/services/dto/bovine-data'
export interface BuildingSummary {
id: number
label: string
code: string
}
export interface BuildingCaseData {
id: number
caseNumber: number | null
code: string | null
capacity: number | null
statut?: BuildingCaseStatusData | null
statut?: { label: string; couleur: string } | null
building?: BuildingSummary | null
bovines: BovineData[]
}