From 6dec2342316aecf4084c8f4efb43f33fbb72892f Mon Sep 17 00:00:00 2001
From: liujiandao <274878379@qq.com>
Date: 星期二, 09 四月 2024 14:07:43 +0800
Subject: [PATCH] 更新计量单位字典
---
proto/product_inventory.proto | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/proto/product_inventory.proto b/proto/product_inventory.proto
index 35789d9..c789fa7 100644
--- a/proto/product_inventory.proto
+++ b/proto/product_inventory.proto
@@ -2,12 +2,15 @@
option go_package = "./product_inventory";
+import "common.proto";
+
service productInventoryService {
rpc CreateOperation(CreateOperationRequest) returns(CreateOperationResponse) {}
rpc GetInventoryProductInfo(GetInventoryProductInfoRequest) returns (GetInventoryProductInfoResponse) {}
rpc UpdateSalesDetailStatus(UpdateSalesDetailStatusRequest) returns (UpdateSalesDetailStatusResponse) {}
rpc GetOrderInputAndOutputInfo(GetOrderInputAndOutputInfoRequest) returns (GetOrderInputAndOutputInfoResponse) {}
rpc OrderProductOutput(OrderProductOutputRequest) returns (OrderProductOutputResponse) {}
+ rpc GetOutputOperationInfo(GetOutputOperationInfoRequest) returns (GetOutputOperationInfoResponse) {}
}
message CreateOperationRequest{
@@ -20,6 +23,7 @@
int64 ClientId = 7;
string ClientName = 8;
repeated InventoryProduct ProductList = 9;
+ OperationSource OperationSource = 10;
}
message InventoryProduct{
@@ -97,7 +101,7 @@
int64 WareHouseID = 16;
}
message GetOrderInputAndOutputInfoRequest {
- string Number = 1;//鏄庣粏鍗曠紪鐮�
+ string Number = 1;//鏄庣粏鍗曠紪鐮�
}
message GetOrderInputAndOutputInfoResponse {
@@ -121,4 +125,14 @@
message OrderProductOutputResponse {
int32 Code = 1;
string Msg = 2;
+}
+
+//------------------------------------------------------------------------------------------------
+
+message GetOutputOperationInfoRequest{
+ string Number = 1;//鏄庣粏鍗曠紪鐮�
+}
+
+message GetOutputOperationInfoResponse{
+ repeated OutputProduct Products= 1;//鍙戣揣鏄庣粏
}
\ No newline at end of file
--
Gitblit v1.8.0