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

Führt eine IST-Wert Anpassung des gegebenen Arbeitspakets durch.

Request

URI Parameters

type
character
Erforderlich

identifier
string
Erforderlich

workStepIndex
integer
Erforderlich

Body Parameters

Model: ActualValuesParameters
ActualEffort
time interval
IST Aufwand

ActualStaffTime
time interval
IST Personalzeit

ActualHourlyRate
decimal number
IST Stundensatz

Welche Auswirkungen sich auf den gesamten Auftrag ergeben sollen.

Simulation
boolean
Ob nur simuliert werden soll.
Request Formats
application/json
Beispiel:
    {
  "ActualEffort": "00:00:00.1234567",
  "ActualStaffTime": "00:00:00.1234567",
  "ActualHourlyRate": 3.1,
  "ImpactKind": "OnDemand",
  "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-26T20:16:01.9915276+02:00",
  "EndOfProduction": "2024-04-26T20:16:01.9915276+02:00",
  "InitialJob": {
    "Type": "A",
    "Identifier": "sample string 2"
  },
  "Simulation": true,
  "StartOfProduction": "2024-04-26T20:16:01.9915276+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"
    }
  ]
}