feat(FE-137): simplify RecordingTable by removing unused columns and enhancing data clarity

This commit is contained in:
rstubryan
2025-10-24 12:14:47 +07:00
parent c546bd6b3c
commit 00de4782e7
@@ -302,14 +302,6 @@ const RecordingTable = () => {
header: 'Populasi Awal',
cell: (props) => props.row.original.total_chick?.toLocaleString() || '-',
},
{
header: 'Ekor Panen',
cell: (props) => '-',
},
{
header: 'KG Panen',
cell: (props) => '-',
},
{
header: 'BW',
cell: (props) => props.row.original.avg_daily_gain?.toFixed(2) || '-',
@@ -322,18 +314,6 @@ const RecordingTable = () => {
header: 'FCR',
cell: (props) => props.row.original.fcr_value?.toFixed(2) || '-',
},
{
header: 'Deplesi Culling',
cell: (props) => '-',
},
{
header: 'Deplesi Mati',
cell: (props) => '-',
},
{
header: 'Deplesi Afkir',
cell: (props) => '-',
},
{
accessorKey: 'total_depletion',
header: 'Total Deplesi',
@@ -347,10 +327,6 @@ const RecordingTable = () => {
header: 'Populasi Akhir',
cell: (props) => (props.row.original.total_chick - props.row.original.total_depletion)?.toLocaleString() || '-',
},
{
header: 'IP',
cell: (props) => '-',
},
{
header: 'Status Recording',
cell: (props) => {