/ProductionControl/{type}/{identifier}/WorkSteps/{workStepIndex}/AdjustActualValues
Beschreibung
Führt eine IST-Wert Anpassung des gegebenen Arbeitspakets durch.
- Es wird das Recht "Produktionsaufträge planen" für die Funktion "Produktionsaufträge" benötigt.
Request
URI Parameters
type
character
Erforderlich
identifier
string
Erforderlich
workStepIndex
integer
Erforderlich
Body Parameters
ActualEffort
time interval
IST Aufwand
ActualStaffTime
time interval
IST Personalzeit
ActualHourlyRate
decimal number
IST Stundensatz
ImpactKind
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
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
Status
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-11-22T04:13:24.2030495+01:00",
"EndOfProduction": "2024-11-22T04:13:24.2030495+01:00",
"InitialJob": {
"Type": "A",
"Identifier": "sample string 2"
},
"Simulation": true,
"StartOfProduction": "2024-11-22T04:13:24.2030495+01: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"
}
]
}