Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • feature/extended-communication
  • main
2 results

Target

Select target project
  • ipos-public/models
1 result
Select Git revision
  • feature/extended-communication
  • main
2 results
Show changes
Commits on Source (2)
......@@ -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
......@@ -22,7 +22,7 @@ message IposObjectConfig {
message IposPositionEvent {
repeated IposObject objects = 1;
string type = 2; // deprecated may be ExitNotification or EntryNotification
// string type = 2; // deprecated may be ExitNotification or EntryNotification
}
message IposZoneDescriptor {
......@@ -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 {
......