From da3e478917dea118df075357cbd2e6f10833d9c6 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期五, 14 六月 2024 20:08:22 +0800
Subject: [PATCH] 商品调整验证后生成入库单和出库单
---
proto/product_inventory.proto | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/proto/product_inventory.proto b/proto/product_inventory.proto
index 3d1dcd9..b8d0e9b 100644
--- a/proto/product_inventory.proto
+++ b/proto/product_inventory.proto
@@ -10,6 +10,7 @@
rpc UpdateSalesDetailStatus(UpdateSalesDetailStatusRequest) returns (UpdateSalesDetailStatusResponse) {}
rpc GetOrderInputAndOutputInfo(GetOrderInputAndOutputInfoRequest) returns (GetOrderInputAndOutputInfoResponse) {}
rpc OrderProductOutput(OrderProductOutputRequest) returns (OrderProductOutputResponse) {}
+ rpc GetOutputOperationInfo(GetOutputOperationInfoRequest) returns (GetOutputOperationInfoResponse) {}
}
message CreateOperationRequest{
@@ -100,7 +101,7 @@
int64 WareHouseID = 16;
}
message GetOrderInputAndOutputInfoRequest {
- string Number = 1;//鏄庣粏鍗曠紪鐮�
+ string Number = 1;//鏄庣粏鍗曠紪鐮�
}
message GetOrderInputAndOutputInfoResponse {
@@ -119,9 +120,20 @@
message OrderProductOutputRequest {
string OrderNumber = 1;//鏄庣粏鍗曠紪鐮�
repeated OutputProduct Products= 2;//鍙戣揣鏄庣粏
+ int64 warehouseId = 3;//鍙戣揣浠撳簱ID
}
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