ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface ReceptionLine

    interface ReceptionLine {
        id: string;
        receptionNoteId: string;
        purchaseOrderLineId: string;
        quantityReceived: number;
        quantityAccepted: number;
        quantityRejected: number;
        qualityNotes?: string;
        batchNumber?: string;
        expiryDate?: string;
        purchaseOrderLine?: {
            id: string;
            quantity: number;
            unitPrice: number;
            totalPrice: number;
            rawMaterial?: {
                id: string;
                name: string;
                code: string;
                unitOfMeasure?: { id: string; name: string; code: string };
            };
        };
    }
    Index

    Properties

    id: string
    receptionNoteId: string
    purchaseOrderLineId: string
    quantityReceived: number
    quantityAccepted: number
    quantityRejected: number
    qualityNotes?: string
    batchNumber?: string
    expiryDate?: string
    purchaseOrderLine?: {
        id: string;
        quantity: number;
        unitPrice: number;
        totalPrice: number;
        rawMaterial?: {
            id: string;
            name: string;
            code: string;
            unitOfMeasure?: { id: string; name: string; code: string };
        };
    }