mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-137): simplify RecordingTable by removing unused columns and enhancing data clarity
This commit is contained in:
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user