more features

This commit is contained in:
matst80
2024-11-14 20:02:34 +01:00
parent 3f6f78c839
commit 1c6c9b1894
5 changed files with 390 additions and 68 deletions

View File

@@ -17,6 +17,8 @@ message AddItem {
int32 Stock = 7;
int32 Tax = 8;
string Disclaimer = 10;
string ArticleType = 11;
optional string Outlet = 12;
}
message RemoveItem {
@@ -31,6 +33,30 @@ message ChangeQuantity {
message SetDelivery {
string Provider = 1;
repeated int64 Items = 2;
optional PickupPoint PickupPoint = 3;
string Country = 4;
string Zip = 5;
optional string Address = 6;
optional string City = 7;
}
message SetPickupPoint {
int64 DeliveryId = 1;
string Id = 2;
optional string Name = 3;
optional string Address = 4;
optional string City = 5;
optional string Zip = 6;
optional string Country = 7;
}
message PickupPoint {
string Id = 1;
optional string Name = 2;
optional string Address = 3;
optional string City = 4;
optional string Zip = 5;
optional string Country = 6;
}
message RemoveDelivery {