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

    Interface ProductionProgram

    interface ProductionProgram {
        id: string;
        number: string;
        receptionDate: string;
        clientId: string;
        finishedProductId: string;
        programWeek?: string | null;
        clientProductCode?: string | null;
        status: "DRAFT" | "PROCESSED" | "CALCULATED" | "OLD";
        ediMessageId?: string | null;
        ediExtract?: string | null;
        notes?: string | null;
        salesOrderId?: string | null;
        createdAt: string;
        updatedAt: string;
        client?: { id: string; name: string; code: string };
        finishedProduct?: { id: string; name: string; code: string };
        salesOrder?: { id: string; number: string; status: string } | null;
        _count?: { lines: number };
    }
    Index

    Properties

    id: string
    number: string
    receptionDate: string
    clientId: string
    finishedProductId: string
    programWeek?: string | null
    clientProductCode?: string | null
    status: "DRAFT" | "PROCESSED" | "CALCULATED" | "OLD"
    ediMessageId?: string | null
    ediExtract?: string | null
    notes?: string | null
    salesOrderId?: string | null
    createdAt: string
    updatedAt: string
    client?: { id: string; name: string; code: string }
    finishedProduct?: { id: string; name: string; code: string }
    salesOrder?: { id: string; number: string; status: string } | null
    _count?: { lines: number }