inventory
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user