From 1123e3f0584fb402300499aee42d45e2150138cc Mon Sep 17 00:00:00 2001
From: liujiandao <274878379@qq.com>
Date: 星期一, 01 四月 2024 16:01:04 +0800
Subject: [PATCH] aps查询工单入库信息

---
 proto/inventory_order.proto |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/proto/inventory_order.proto b/proto/inventory_order.proto
index ea16e88..8820551 100644
--- a/proto/inventory_order.proto
+++ b/proto/inventory_order.proto
@@ -10,6 +10,7 @@
   rpc UpdateMaterialApplyStatus(UpdateMaterialApplyStatusRequest) returns(UpdateMaterialApplyStatusResponse) {}
   rpc GetWarehouseInfo(GetWarehouseInfoRequest) returns(GetWarehouseInfoResponse) {}
   rpc UpdateOutsourceOrder(UpdateOutsourceOrderRequest) returns(UpdateOutsourceOrderResponse) {}
+  rpc GetOperationInfo(GetOperationInfoRequest) returns(GetOperationInfoResponse) {}
 }
 
 message CreateNewOrderRequest{
@@ -86,4 +87,23 @@
   repeated OperationProduct Products = 2;
 }
 
-message UpdateOutsourceOrderResponse{}
\ No newline at end of file
+message UpdateOutsourceOrderResponse{}
+
+//-------------------------------------------------GetOperationInfo-----------------------------------------
+
+message GetOperationInfoRequest{
+  repeated string SourceNumber = 1;//鏉ユ簮缂栫爜
+  repeated string SalesDetailsNumber = 2;//閿�鍞槑缁嗙紪鐮�
+  int64 Status = 3;//鐘舵��
+}
+
+message GetOperationInfoResponse{
+  repeated OperationInfo list = 1;
+}
+
+message OperationInfo {
+  string SourceNumber = 1;//鏉ユ簮缂栫爜
+  string SalesDetailsNumber = 2;//閿�鍞槑缁嗙紪鐮�
+  string ProductId = 3;
+  int64 Amount = 4;
+}
\ No newline at end of file

--
Gitblit v1.8.0