mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 07:15:44 +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',
|
header: 'Populasi Awal',
|
||||||
cell: (props) => props.row.original.total_chick?.toLocaleString() || '-',
|
cell: (props) => props.row.original.total_chick?.toLocaleString() || '-',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
header: 'Ekor Panen',
|
|
||||||
cell: (props) => '-',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
header: 'KG Panen',
|
|
||||||
cell: (props) => '-',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
header: 'BW',
|
header: 'BW',
|
||||||
cell: (props) => props.row.original.avg_daily_gain?.toFixed(2) || '-',
|
cell: (props) => props.row.original.avg_daily_gain?.toFixed(2) || '-',
|
||||||
@@ -322,18 +314,6 @@ const RecordingTable = () => {
|
|||||||
header: 'FCR',
|
header: 'FCR',
|
||||||
cell: (props) => props.row.original.fcr_value?.toFixed(2) || '-',
|
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',
|
accessorKey: 'total_depletion',
|
||||||
header: 'Total Deplesi',
|
header: 'Total Deplesi',
|
||||||
@@ -347,10 +327,6 @@ const RecordingTable = () => {
|
|||||||
header: 'Populasi Akhir',
|
header: 'Populasi Akhir',
|
||||||
cell: (props) => (props.row.original.total_chick - props.row.original.total_depletion)?.toLocaleString() || '-',
|
cell: (props) => (props.row.original.total_chick - props.row.original.total_depletion)?.toLocaleString() || '-',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
header: 'IP',
|
|
||||||
cell: (props) => '-',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
header: 'Status Recording',
|
header: 'Status Recording',
|
||||||
cell: (props) => {
|
cell: (props) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user