Files
Ferme/frontend/services/dto/bovine-data.ts
tristan b61321c7b7
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
fix : wip cleanup
2026-05-13 17:50:23 +02:00

32 lines
773 B
TypeScript

export interface BovineBuildingRef {
label: string
}
export interface BovineBuildingCaseRef {
caseNumber: number | null
building: BovineBuildingRef | null
}
export interface BovineData {
id: number
nationalNumber: string
receivedWeight: number | null
pricePerKg: number | null
finalPrice: number | null
arrivalDate: string | null
exitDate: string | null
buildingCase: BovineBuildingCaseRef | null
supplier: string | null
workNumber: string | null
birthDate: string | null
bovineType: { id: number; label: string; code: string } | null
sex: string | null
ageMonths: number | null
exitedAt: string | null
}
export type BovinePayload = {
nationalNumber?: string
buildingCase?: string | null
}