ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface PurchaseOrder {
        id: string;
        number: string;
        supplierId: string;
        orderDate: string;
        expectedDate?: string;
        status:
            | "DRAFT"
            | "CANCELLED"
            | "CONFIRMED"
            | "PARTIALLY_RECEIVED"
            | "RECEIVED";
        totalAmount: number;
        currencyId?: string;
        notes?: string;
        createdAt: string;
        updatedAt: string;
        supplier?: {
            id: string;
            name: string;
            code: string;
            phone?: string;
            email?: string;
            addresses?: { street: string; city: string; country: string }[];
        };
        currency?: { id: string; code: string; symbol: string };
        lines?: PurchaseOrderLine[];
    }
    Index

    Properties

    id: string
    number: string
    supplierId: string
    orderDate: string
    expectedDate?: string
    status: "DRAFT" | "CANCELLED" | "CONFIRMED" | "PARTIALLY_RECEIVED" | "RECEIVED"
    totalAmount: number
    currencyId?: string
    notes?: string
    createdAt: string
    updatedAt: string
    supplier?: {
        id: string;
        name: string;
        code: string;
        phone?: string;
        email?: string;
        addresses?: { street: string; city: string; country: string }[];
    }
    currency?: { id: string; code: string; symbol: string }