ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface ProductionStep {
        id: string;
        sequence: number;
        status: "COMPLETED" | "IN_PROGRESS" | "PENDING" | "SKIPPED";
        plannedStart: Date | null;
        plannedEnd: Date | null;
        actualStart: Date | null;
        actualEnd: Date | null;
        plannedDuration: number | null;
        actualDuration: number | null;
        efficiency: number | null;
        qualityStatus: "PENDING" | "FAILED" | "PASSED" | null;
        producedQuantity: number | null;
        scrapQuantity: number | null;
        operator: string | null;
        notes: string | null;
        workOrderId: string;
        operationId: string | null;
        workStationId: string | null;
        operatorUserId: string | null;
        createdAt: Date;
        updatedAt: Date;
        operation:
            | {
                id: string;
                code: string;
                name: string;
                description: string
                | null;
                content: string | null;
                sequence: number;
                duration: number | null;
                setupTime: number | null;
                isActive: boolean;
                workCenter: { name: string } | null;
                timingABC: any;
            }
            | null;
        workStation: { id: string; name: string; code: string }
        | null;
        operatorUser: { name: string | null } | null;
    }
    Index

    Properties

    id: string
    sequence: number
    status: "COMPLETED" | "IN_PROGRESS" | "PENDING" | "SKIPPED"
    plannedStart: Date | null
    plannedEnd: Date | null
    actualStart: Date | null
    actualEnd: Date | null
    plannedDuration: number | null
    actualDuration: number | null
    efficiency: number | null
    qualityStatus: "PENDING" | "FAILED" | "PASSED" | null
    producedQuantity: number | null
    scrapQuantity: number | null
    operator: string | null
    notes: string | null
    workOrderId: string
    operationId: string | null
    workStationId: string | null
    operatorUserId: string | null
    createdAt: Date
    updatedAt: Date
    operation:
        | {
            id: string;
            code: string;
            name: string;
            description: string
            | null;
            content: string | null;
            sequence: number;
            duration: number | null;
            setupTime: number | null;
            isActive: boolean;
            workCenter: { name: string } | null;
            timingABC: any;
        }
        | null
    workStation: { id: string; name: string; code: string } | null
    operatorUser: { name: string | null } | null