info@selectline.de | +49 391 5555-080 | SelectLine – steht jedem Unternehmen
/ProductionControl/{type}/{identifier}/WorkSteps/{workStepIndex}/Interrupt
Beschreibung

Unterbricht ein Arbeitspaket.

Request

URI Parameters

type
character
Erforderlich

identifier
string
Erforderlich

workStepIndex
integer
Erforderlich

Body Parameters

Model: InterruptionParameters
InterruptionStart
date
Hier beginnt der Zeitraum der Unterbrechung.

InterruptionEnd
date
Hier endet der Zeitraum der Unterbrechung.

Simulation
boolean
Ob nur simuliert werden soll.
Request Formats
application/json
Beispiel:
    {
  "InterruptionStart": "2024-04-25T18:08:54.3985226+02:00",
  "InterruptionEnd": "2024-04-25T18:08:54.3985226+02:00",
  "Simulation": true
}

Response

Resource Description

Model: SchedulerResult
AffectedJobs
Collection of JobNumber
Welche Aufträge noch mit verarbeitet wurden.

DeliveryDate
date
Liefertermin

EndOfProduction
date
Fertigungsende

InitialJob
Nummer des Auftrags, der die Anfrage ausgelöst hat.

Simulation
boolean
Ob die Operation nur simuliert wurde.

StartOfProduction
date
Fertigungsstart

Statuscode der Planungsoperation.

ProtocolEntries
Collection of ProtocolEntry
Protokolleinträge, die während der Planung generiert wurden

Response Formats
application/json
Beispiel:
    {
  "AffectedJobs": [
    {
      "Type": "A",
      "Identifier": "sample string 2"
    },
    {
      "Type": "A",
      "Identifier": "sample string 2"
    }
  ],
  "DeliveryDate": "2024-04-25T18:08:54.40024+02:00",
  "EndOfProduction": "2024-04-25T18:08:54.40024+02:00",
  "InitialJob": {
    "Type": "A",
    "Identifier": "sample string 2"
  },
  "Simulation": true,
  "StartOfProduction": "2024-04-25T18:08:54.40024+02:00",
  "Status": "None",
  "ProtocolEntries": [
    {
      "Code": "ErrorArbeitspaketNotFound",
      "Parameters": null,
      "SourceOrderIdentifier": "sample string 1",
      "SourceWrokStepIdentifier": "sample string 2"
    },
    {
      "Code": "ErrorArbeitspaketNotFound",
      "Parameters": null,
      "SourceOrderIdentifier": "sample string 1",
      "SourceWrokStepIdentifier": "sample string 2"
    }
  ]
}