fix(FE): adjust data types for inventory product stock

This commit is contained in:
randy-ar
2025-12-04 16:35:10 +07:00
parent e0a8514814
commit a1d0c7b331
5 changed files with 10 additions and 8 deletions
+3 -1
View File
@@ -3,6 +3,7 @@ import { ProductWarehouse } from '@/types/api/inventory/product-warehouse';
import { ProductCategory } from '@/types/api/master-data/product-category';
import { Supplier } from '@/types/api/master-data/supplier';
import { Uom } from '@/types/api/master-data/uom';
import { Location } from '@/types/api/master-data/location';
export type BaseInventoryProduct = {
id: number;
@@ -39,7 +40,8 @@ export type StockLog = {
loggable_id: number;
notes: string;
product_warehouse_id: number;
created_by: CreatedUser;
created_by: number;
created_user: CreatedUser;
created_at: string;
};