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

adjusted OFBizOrderpicker

parent d4e84ffa
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,9 @@ message OrderpickerWrapper { // wrapper-message for configuration-topic ...@@ -6,9 +6,9 @@ message OrderpickerWrapper { // wrapper-message for configuration-topic
repeated OFBizPicklist picklists = 1; repeated OFBizPicklist picklists = 1;
} }
message FrontendWrapper { message FEndWrapper { // FrontendWrapper
repeated FEndInitRow fEndInitRows = 1; repeated FEndInitPicklist fEndInitPicklists = 1;
repeated FEndUpdateInventoryItem fEndupdateInventoryItems = 2; repeated FEndUpdateInventoryItem fEndUpdateInventoryItems = 2;
repeated FEndUpdateShipmentBin fEndUpdateShipmentBins = 3; repeated FEndUpdateShipmentBin fEndUpdateShipmentBins = 3;
} }
...@@ -31,10 +31,7 @@ message OFBizPicklistBin { ...@@ -31,10 +31,7 @@ message OFBizPicklistBin {
} }
message OFBizPicklistItem { message OFBizPicklistItem {
string orderId = 1; OFBizInventoryItem inventoryItem = 1;
string oderItemSeqId = 2;
int32 quantity = 3;
OFBizInventoryItem inventoryItem = 4;
} }
message OFBizInventoryItem { message OFBizInventoryItem {
...@@ -43,24 +40,27 @@ message OFBizInventoryItem { ...@@ -43,24 +40,27 @@ message OFBizInventoryItem {
string productId = 3; string productId = 3;
} }
message FEndInitPicklist {
string picklistId = 1;
string pickerId = 2;
repeated FEndInitRow fEndInitRows = 3;
}
message FEndInitRow { message FEndInitRow {
int32 index = 1; int32 index = 1;
string orderId = 2; string productId = 2;
string orderItemSeqId = 3; string inventoryItem_Soll = 3;
string productId = 4; int32 shipmentBinNr_Soll = 4;
int32 quantity = 5;
string inventoryItem = 6;
int32 shipmentBinNr = 7;
} }
message FEndUpdateInventoryItem { message FEndUpdateInventoryItem {
int32 index = 1; int32 index = 1;
bool isCorrect = 2; bool isCorrect = 2; // if true -> draw green, if false -> draw red
string inventoryItem = 3; string inventoryItem_Ist = 3;
} }
message FEndUpdateShipmentBin { message FEndUpdateShipmentBin {
int32 index = 1; int32 index = 1;
bool isCorrect = 2; bool isCorrect = 2;
int32 shipmentBinNr = 3; int32 shipmentBinNr_Ist = 3;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment