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

Plant einen einzelnen Auftrag ein.

Request

URI Parameters

type
character
Erforderlich

identifier
string
Erforderlich

Body Parameters

Model: SchedulerParameters
DateTime
date
Planungstermin. Die Interprätation ist abhängig von der Planungsrichtung.
Standard: null (versuchen aus dem Auftrag abzuleiten)

Direction
Planungsrichtung.
Standard: Vorwärts

Prioritized
boolean
Auftrag priorisiert einplanen?
Standard: false

Recursive
boolean
Erforderliche Aufträge automatisch mit einplanen?
Standard: false

Simulation
boolean
Planung nur simulieren?
Standard: false
Request Formats
application/json
Beispiel:
    {
  "DateTime": "2024-07-27T15:51:12.0479217+02:00",
  "Direction": "Forward",
  "Prioritized": true,
  "Recursive": true,
  "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-07-27T15:51:12.0499206+02:00",
  "EndOfProduction": "2024-07-27T15:51:12.0499206+02:00",
  "InitialJob": {
    "Type": "A",
    "Identifier": "sample string 2"
  },
  "Simulation": true,
  "StartOfProduction": "2024-07-27T15:51:12.0499206+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"
    }
  ]
}