ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface VisualizedLocation {
        id: string;
        warehouseId: string;
        code: string;
        name: string;
        zone?: string;
        aisle?: string;
        rack?: string;
        level?: string;
        position?: string;
        isActive: boolean;
        status: "empty" | "occupied" | "unavailable" | "maintenance";
        currentStock: number;
        maxCapacity: number;
        fillPercentage: number;
        lastMovementDate: Date | null;
        product?: {
            id: string;
            name: string;
            code: string;
            minStockLevel?: number;
            maxStockLevel?: number;
            reorderPoint?: number;
            cost?: number;
        };
        productType: "RAW_MATERIAL"
        | "FINISHED_PRODUCT"
        | null;
        warehouse: { id: string; code: string; name: string };
        stockMovements: any[];
        _count: { stockMovements: number };
    }
    Index

    Properties

    id: string
    warehouseId: string
    code: string
    name: string
    zone?: string
    aisle?: string
    rack?: string
    level?: string
    position?: string
    isActive: boolean
    status: "empty" | "occupied" | "unavailable" | "maintenance"
    currentStock: number
    maxCapacity: number
    fillPercentage: number
    lastMovementDate: Date | null
    product?: {
        id: string;
        name: string;
        code: string;
        minStockLevel?: number;
        maxStockLevel?: number;
        reorderPoint?: number;
        cost?: number;
    }
    productType: "RAW_MATERIAL" | "FINISHED_PRODUCT" | null
    warehouse: { id: string; code: string; name: string }
    stockMovements: any[]
    _count: { stockMovements: number }