inventory

This commit is contained in:
2026-03-14 21:23:22 -05:00
parent d21e2e3c0b
commit 472c36915c
14 changed files with 730 additions and 1 deletions

View File

@@ -31,6 +31,40 @@ export interface InventoryItemOptionDto {
name: string;
}
export interface WarehouseLocationDto {
id: string;
code: string;
name: string;
notes: string;
}
export interface WarehouseLocationInput {
code: string;
name: string;
notes: string;
}
export interface WarehouseSummaryDto {
id: string;
code: string;
name: string;
locationCount: number;
updatedAt: string;
}
export interface WarehouseDetailDto extends WarehouseSummaryDto {
notes: string;
createdAt: string;
locations: WarehouseLocationDto[];
}
export interface WarehouseInput {
code: string;
name: string;
notes: string;
locations: WarehouseLocationInput[];
}
export interface InventoryItemSummaryDto {
id: string;
sku: string;