ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface QualityControl {
        id: string;
        workOrderId: string | null;
        workOrderNumber: string;
        workOrder:
            | { id: string; number: string; product: string; client: string }
            | null;
        operationId: string;
        operation: { id: string; name: string; code: string; description: string };
        controlType: "visual" | "measurement" | "test" | "inspection";
        result: string | null;
        passed: boolean;
        performedBy: string | null;
        performedByUser: { id: string; name: string; email: string } | null;
        performedAt: string;
        notes: string | null;
        photos: string[];
        attachments: string[];
        status: "passed" | "failed";
        qualityStatus?: string | null;
    }
    Index

    Properties

    id: string
    workOrderId: string | null
    workOrderNumber: string
    workOrder:
        | { id: string; number: string; product: string; client: string }
        | null
    operationId: string
    operation: { id: string; name: string; code: string; description: string }
    controlType: "visual" | "measurement" | "test" | "inspection"
    result: string | null
    passed: boolean
    performedBy: string | null
    performedByUser: { id: string; name: string; email: string } | null
    performedAt: string
    notes: string | null
    photos: string[]
    attachments: string[]
    status: "passed" | "failed"
    qualityStatus?: string | null