ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface StockLot {
        id: string;
        lotNumber: string;
        batchNumber?: string;
        quantity: number;
        unit: string;
        expiryDate?: string;
        isActive: boolean;
        createdAt: string;
        updatedAt: string;
        rawMaterial?: {
            id: string;
            name: string;
            code: string;
            unitOfMeasure?: { id: string; name: string; code: string };
        };
        finishedProduct?: { id: string; name: string; code: string };
        stockMovements?: {
            id: string;
            type: string;
            quantity: number;
            date: string;
            reference: string;
        }[];
    }
    Index

    Properties

    id: string
    lotNumber: string
    batchNumber?: string
    quantity: number
    unit: string
    expiryDate?: string
    isActive: boolean
    createdAt: string
    updatedAt: string
    rawMaterial?: {
        id: string;
        name: string;
        code: string;
        unitOfMeasure?: { id: string; name: string; code: string };
    }
    finishedProduct?: { id: string; name: string; code: string }
    stockMovements?: {
        id: string;
        type: string;
        quantity: number;
        date: string;
        reference: string;
    }[]