[PUI]: Refactor columns (#7136)

This commit is contained in:
Oliver 2024-04-30 07:46:12 +10:00 committed by GitHub
parent e4c227f876
commit 6ae64467eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 19 additions and 22 deletions

View File

@ -18,6 +18,7 @@ import { ApiEndpoints } from '../../../enums/ApiEndpoints';
import { useTable } from '../../../hooks/UseTable';
import { apiUrl } from '../../../states/ApiState';
import { TableColumn } from '../../../tables/Column';
import { DateColumn } from '../../../tables/ColumnRenderers';
import { InvenTreeTable } from '../../../tables/InvenTreeTable';
import { NoPricingData } from './PricingPanel';
@ -40,13 +41,12 @@ export default function SaleHistoryPanel({ part }: { part: any }): ReactNode {
switchable: true,
render: (record: any) => record?.customer_detail?.name
},
{
accessor: 'shipment_date',
DateColumn({
accessor: 'order_detail.shipment_date',
title: t`Date`,
sortable: false,
switchable: true,
render: (record: any) => renderDate(record.order_detail.shipment_date)
},
switchable: true
}),
{
accessor: 'sale_price',
title: t`Sale Price`,

View File

@ -191,9 +191,11 @@ export function DateColumn({
accessor,
sortable,
switchable,
ordering,
title
}: {
accessor?: string;
ordering?: string;
sortable?: boolean;
switchable?: boolean;
title?: string;
@ -201,9 +203,10 @@ export function DateColumn({
return {
accessor: accessor ?? 'date',
sortable: sortable ?? true,
ordering: ordering,
title: title ?? t`Date`,
switchable: switchable,
render: (record: any) => renderDate(record[accessor ?? 'date'])
render: (record: any) => renderDate(resolveItem(record, accessor ?? 'date'))
};
}

View File

@ -17,6 +17,7 @@ import { useUserState } from '../../states/UserState';
import { TableColumn } from '../Column';
import {
CreationDateColumn,
DateColumn,
ProjectCodeColumn,
ReferenceColumn,
ResponsibleColumn,
@ -62,11 +63,10 @@ function buildOrderTableColumns(): TableColumn[] {
},
CreationDateColumn(),
TargetDateColumn(),
{
DateColumn({
accessor: 'completion_date',
sortable: true,
render: (record: any) => renderDate(record.completion_date)
},
sortable: true
}),
{
accessor: 'issued_by',
sortable: true,

View File

@ -206,18 +206,12 @@ function stockItemTableColumns(): TableColumn[] {
title: t`Stocktake`,
sortable: true
}),
{
accessor: 'expiry_date',
sortable: true,
switchable: true,
render: (record: any) => renderDate(record.expiry_date)
},
{
accessor: 'updated',
sortable: true,
switchable: true,
render: (record: any) => renderDate(record.updated)
},
DateColumn({
accessor: 'expiry_date'
}),
DateColumn({
accessor: 'updated'
}),
// TODO: purchase order
// TODO: Supplier part
{