From 00de4782e765c622c6cbcd3cb3a2adcd108c49a9 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Fri, 24 Oct 2025 12:14:47 +0700 Subject: [PATCH] feat(FE-137): simplify RecordingTable by removing unused columns and enhancing data clarity --- .../production/recording/RecordingTable.tsx | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/src/components/pages/production/recording/RecordingTable.tsx b/src/components/pages/production/recording/RecordingTable.tsx index 833f8500..832cdbcd 100644 --- a/src/components/pages/production/recording/RecordingTable.tsx +++ b/src/components/pages/production/recording/RecordingTable.tsx @@ -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) => {