diff --git a/src/components/pages/production/recording/form/RecordingForm.tsx b/src/components/pages/production/recording/form/RecordingForm.tsx
index 4a9d6c13..4966172c 100644
--- a/src/components/pages/production/recording/form/RecordingForm.tsx
+++ b/src/components/pages/production/recording/form/RecordingForm.tsx
@@ -1737,16 +1737,16 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
Egg Mass |
- {initialValues.egg_mesh &&
- initialValues.egg_mesh > 0
- ? formatNumber(initialValues.egg_mesh)
+ {initialValues.egg_mass &&
+ initialValues.egg_mass > 0
+ ? formatNumber(initialValues.egg_mass)
: '-'}
|
- {initialValues.egg_mesh_std &&
- initialValues.egg_mesh_std > 0
- ? formatNumber(initialValues.egg_mesh_std)
+ {initialValues.egg_mass_std &&
+ initialValues.egg_mass_std > 0
+ ? formatNumber(initialValues.egg_mass_std)
: '-'}
|
@@ -1773,16 +1773,16 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
Hen Day |
- {initialValues.hand_day &&
- initialValues.hand_day > 0
- ? formatNumber(initialValues.hand_day)
+ {initialValues.hen_day &&
+ initialValues.hen_day > 0
+ ? formatNumber(initialValues.hen_day)
: '-'}
|
- {initialValues.hand_day_std !== undefined &&
- initialValues.hand_day_std > 0
- ? `${initialValues.hand_day_std}%`
+ {initialValues.hen_day_std !== undefined &&
+ initialValues.hen_day_std > 0
+ ? `${initialValues.hen_day_std}%`
: '-'}
|
@@ -1790,16 +1790,16 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
Hen House |
- {initialValues.hand_house &&
- initialValues.hand_house > 0
- ? formatNumber(initialValues.hand_house)
+ {initialValues.hen_house &&
+ initialValues.hen_house > 0
+ ? formatNumber(initialValues.hen_house)
: '-'}
|
- {initialValues.hand_house_std !== undefined &&
- initialValues.hand_house_std > 0
- ? `${initialValues.hand_house_std}%`
+ {initialValues.hen_house_std !== undefined &&
+ initialValues.hen_house_std > 0
+ ? `${initialValues.hen_house_std}%`
: '-'}
|
diff --git a/src/types/api/production/recording.d.ts b/src/types/api/production/recording.d.ts
index 9cf9a625..1728516a 100644
--- a/src/types/api/production/recording.d.ts
+++ b/src/types/api/production/recording.d.ts
@@ -8,15 +8,15 @@ export type ProductionMetrics = {
fcr_value: number;
fcr_std?: number;
total_chick_qty: number;
- hand_day?: number;
- hand_house?: number;
+ hen_day?: number;
+ hen_house?: number;
feed_intake?: number;
- egg_mesh?: number;
- egg_weight?: number;
- hand_day_std?: number;
- hand_house_std?: number;
feed_intake_std?: number;
- egg_mesh_std?: number;
+ egg_mass?: number;
+ egg_weight?: number;
+ hen_day_std?: number;
+ hen_house_std?: number;
+ egg_mass_std?: number;
egg_weight_std?: number;
daily_gain?: number;
avg_daily_gain?: number;