Record weight and feed metrics for a flock Calculates daily rates and perform...
Inventory
Record weight and feed metrics for a flock Calculates daily rates and perform...
Record weight and feed metrics for a flock Calculates daily rates and performance indicators IMPORTANT: Automatically accounts for mortality - feed per bird calculated only for living birds Body: { flockId: string, startWeightGrams: number, endWeightGrams: number, totalFeedConsumedKg: number, birdCount: number (optional, initial bird count), mortality: array of {date: ISO datetime, count: number} (optional, birds lost each day), feedType: string (optional), supplier: string (optional), measurementDate: ISO datetime (optional), notes: string (optional) } Example with mortality: { "flockId": "...", "startWeightGrams": 1200, "endWeightGrams": 1700, "totalFeedConsumedKg": 37000, "birdCount": 34000, "mortality": [ {"date": "2024-01-05T00:00:00Z", "count": 5}, {"date": "2024-01-10T00:00:00Z", "count": 2} ], "supplier": "Supplier A" } Result: Feed per bird calculated for 33,993 birds (34000 - 5 - 2), not 34000
**Required capabilities:** `create_movement`.
POST
Record weight and feed metrics for a flock Calculates daily rates and perform...
Soft delete movement (marks as deleted, keeps in DB) Records who deleted it a...Get all recorded metrics for a flock Includes weight gain, feed efficiency, a...