ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface DeliveryNote {
        id: string;
        number: string;
        clientId: string;
        transporterId?: string;
        salesOrderId?: string;
        deliveryDate: string;
        status: "DRAFT" | "CONFIRMED" | "SHIPPED" | "DELIVERED";
        notes?: string;
        createdAt: string;
        updatedAt: string;
        client?: { id: string; name: string; email?: string };
        transporter?: { id: string; name: string; code: string };
        salesOrder?: { id: string; number: string; orderDate: string };
        deliveryLines?: DeliveryLine[];
        labels?: StockLabel[];
        files?: File[];
    }
    Index

    Properties

    id: string
    number: string
    clientId: string
    transporterId?: string
    salesOrderId?: string
    deliveryDate: string
    status: "DRAFT" | "CONFIRMED" | "SHIPPED" | "DELIVERED"
    notes?: string
    createdAt: string
    updatedAt: string
    client?: { id: string; name: string; email?: string }
    transporter?: { id: string; name: string; code: string }
    salesOrder?: { id: string; number: string; orderDate: string }
    deliveryLines?: DeliveryLine[]
    labels?: StockLabel[]
    files?: File[]