feat(FE): Show product UOM suffix in recording form

This commit is contained in:
rstubryan
2026-01-21 14:15:09 +07:00
parent 99fc3f8cae
commit 4d7bbaf771
2 changed files with 61 additions and 0 deletions
+2
View File
@@ -1,11 +1,13 @@
import { BaseMetadata } from '@/types/api/api-general';
import { Warehouse } from '@/types/api/master-data/warehouse';
import { Product } from '@/types/api/master-data/product';
import { Uom } from '@/types/api/master-data/uom';
export type BaseProductWarehouse = {
id: number;
product_id: number;
warehouse_id: number;
uom: Uom;
quantity: number;
product: Product;
warehouse: Warehouse;