mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
refactorF(FE-441): Display formatted fcr_std in RecordingForm
This commit is contained in:
@@ -1576,7 +1576,11 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
|
|||||||
: '-'}
|
: '-'}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td className='text-center py-3 text-gray-600'>-</td>
|
<td className='text-center py-3 text-gray-600'>
|
||||||
|
{initialValues.fcr_std && initialValues.fcr_std > 0
|
||||||
|
? formatNumber(initialValues.fcr_std)
|
||||||
|
: '-'}
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td className='py-3 font-medium'>Feed Intake (KG)</td>
|
<td className='py-3 font-medium'>Feed Intake (KG)</td>
|
||||||
|
|||||||
+1
@@ -6,6 +6,7 @@ export type ProductionMetrics = {
|
|||||||
cum_depletion_rate: number;
|
cum_depletion_rate: number;
|
||||||
cum_intake: number;
|
cum_intake: number;
|
||||||
fcr_value: number;
|
fcr_value: number;
|
||||||
|
fcr_std?: number;
|
||||||
total_chick_qty: number;
|
total_chick_qty: number;
|
||||||
hand_day?: number;
|
hand_day?: number;
|
||||||
hand_house?: number;
|
hand_house?: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user