mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 22:05:45 +00:00
fix(FE): adjust data types for inventory product stock
This commit is contained in:
Vendored
+3
-1
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user