From dd1da1b391da2cd0e9a801d6bb2fb0b1985d4db9 Mon Sep 17 00:00:00 2001
From: Frank Rohde <frank.rohde@tu-dresden.de>
Date: Tue, 7 Dec 2021 13:57:08 +0100
Subject: [PATCH] OfbizOrderpicker: renamed isCorrect-fields; changed datatype
 of shipmentBin-fields from int32 to string SimpleScene: added field
 refSystemId to MonitoringRequest

---
 interfaces/OFBizOrderpicker/OFBizOrderpicker.proto | 10 +++++-----
 interfaces/SimpleScene/SimpleScene.proto           |  5 +++--
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/interfaces/OFBizOrderpicker/OFBizOrderpicker.proto b/interfaces/OFBizOrderpicker/OFBizOrderpicker.proto
index 03b4fd7..311e55c 100644
--- a/interfaces/OFBizOrderpicker/OFBizOrderpicker.proto
+++ b/interfaces/OFBizOrderpicker/OFBizOrderpicker.proto
@@ -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
diff --git a/interfaces/SimpleScene/SimpleScene.proto b/interfaces/SimpleScene/SimpleScene.proto
index f714e8b..262e821 100644
--- a/interfaces/SimpleScene/SimpleScene.proto
+++ b/interfaces/SimpleScene/SimpleScene.proto
@@ -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 {
-- 
GitLab