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

    Interface ReceptionNote

    interface ReceptionNote {
        id: string;
        number: string;
        purchaseOrderId: string;
        receptionDate: string;
        status: "CANCELLED" | "PENDING" | "PARTIAL" | "COMPLETE";
        totalItemsReceived: number;
        qualityControlPassed: boolean | null;
        notes?: string;
        createdAt: string;
        updatedAt: string;
        purchaseOrder?: {
            id: string;
            number: string;
            orderDate: string;
            supplier?: {
                id: string;
                name: string;
                code: string;
                phone?: string;
                email?: string;
                addresses?: { street?: string; city?: string; country?: string }[];
            };
        };
        lines?: ReceptionLine[];
    }
    Index

    Properties

    id: string
    number: string
    purchaseOrderId: string
    receptionDate: string
    status: "CANCELLED" | "PENDING" | "PARTIAL" | "COMPLETE"
    totalItemsReceived: number
    qualityControlPassed: boolean | null
    notes?: string
    createdAt: string
    updatedAt: string
    purchaseOrder?: {
        id: string;
        number: string;
        orderDate: string;
        supplier?: {
            id: string;
            name: string;
            code: string;
            phone?: string;
            email?: string;
            addresses?: { street?: string; city?: string; country?: string }[];
        };
    }
    lines?: ReceptionLine[]