mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
Merge branch 'dev/restu' into 'development'
[HOTFIX/FE] Fix Issue Purchase Expedition Vendor Name See merge request mbugroup/lti-web-client!129
This commit is contained in:
@@ -583,7 +583,7 @@ const PurchaseOrderDetail = ({
|
||||
{
|
||||
header: 'Ekspedisi',
|
||||
accessorKey: 'expedition_name',
|
||||
cell: (props) => props.row.original.expedition_vendor.name || '-',
|
||||
cell: (props) => props.row.original.expedition_vendor?.name || '-',
|
||||
},
|
||||
{
|
||||
header: 'Transport /Item',
|
||||
|
||||
Vendored
+6
-6
@@ -42,12 +42,12 @@ export type PurchaseItem = {
|
||||
expedition_vendor_name?: string | null;
|
||||
received_qty?: number | null;
|
||||
transport_per_item?: number | null;
|
||||
expedition_vendor: {
|
||||
id: number;
|
||||
name: string;
|
||||
alias: string;
|
||||
category: string;
|
||||
};
|
||||
expedition_vendor?: {
|
||||
id?: number;
|
||||
name?: string;
|
||||
alias?: string;
|
||||
category?: string;
|
||||
} | null;
|
||||
};
|
||||
|
||||
export type BasePurchase = {
|
||||
|
||||
Reference in New Issue
Block a user