Skip to content
Snippets Groups Projects
Commit dd1da1b3 authored by FrankR's avatar FrankR
Browse files

OfbizOrderpicker: renamed isCorrect-fields; changed datatype of...

OfbizOrderpicker: renamed isCorrect-fields; changed datatype of shipmentBin-fields from int32 to string
SimpleScene: added field refSystemId to MonitoringRequest
parent c1924ce0
Branches
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ message OFBizPicklistRole {
message OFBizPicklistBin {
string picklistId = 1;
int32 binLocationNumber = 2;
string binLocationNumber = 2;
repeated OFBizPicklistItem picklistItems = 3;
}
......@@ -50,17 +50,17 @@ message FEndInitRow {
int32 index = 1;
string productId = 2;
string inventoryItem_Soll = 3;
int32 shipmentBinNr_Soll = 4;
string shipmentBinNr_Soll = 4;
}
message FEndUpdateInventoryItem {
int32 index = 1;
bool isCorrect = 2; // if true -> draw green, if false -> draw red
bool inventoryIsCorrect = 2; // if true -> draw green, if false -> draw red
string inventoryItem_Ist = 3;
}
message FEndUpdateShipmentBin {
int32 index = 1;
bool isCorrect = 2;
int32 shipmentBinNr_Ist = 3;
bool shipmentIsCorrect = 2;
string shipmentBinNr_Ist = 3;
}
\ No newline at end of file
......@@ -63,8 +63,9 @@ message IposMonitoringRequest {
bool exit_notification = 7; // IPos will notify receiver when object has left the frame
repeated string properties = 8; // properties that shall be monitored: position or id or type
string monitoringTaskId = 9; // unique for each monitoringRequest. IPosFW uses this info for configuring the communication protocol, e.g., for selecting a specific topic for MQTT-communication; a monitoringRequest with the same monitoringTaskId like a previous request updates this request
string requestorProtocol = 10; // communication protocol, e.g., "mqtt"; Assumption: requestor = receiver
string serializationType = 11; // accepted values: "protobuf" or "json"
string refSystemId = 10;
string requestorProtocol = 11; // communication protocol, e.g., "mqtt"; Assumption: requestor = receiver
string serializationType = 12; // accepted values: "protobuf" or "json"
}
message IposMonitoringResponse {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment