mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 15:25:46 +00:00
refactor(FE-208): restructure goods receipt table columns in PurchaseOrderDetail
This commit is contained in:
@@ -612,6 +612,9 @@ const PurchaseOrderDetail = ({
|
|||||||
];
|
];
|
||||||
|
|
||||||
const goodsReceiptColumns: ColumnDef<PurchaseItem>[] = [
|
const goodsReceiptColumns: ColumnDef<PurchaseItem>[] = [
|
||||||
|
{
|
||||||
|
header: 'Header Placeholder untuk tiap Produk Penerimaan Barang',
|
||||||
|
columns: [
|
||||||
{
|
{
|
||||||
header: 'No',
|
header: 'No',
|
||||||
cell: (props) => props.row.index + 1,
|
cell: (props) => props.row.index + 1,
|
||||||
@@ -695,6 +698,8 @@ const PurchaseOrderDetail = ({
|
|||||||
header: 'Transport Total',
|
header: 'Transport Total',
|
||||||
cell: (props) => formatCurrency(props.getValue() as number),
|
cell: (props) => formatCurrency(props.getValue() as number),
|
||||||
},
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const summaryData = [
|
const summaryData = [
|
||||||
|
|||||||
Reference in New Issue
Block a user