From e1ec7e077a10938ce795c766915c5c5673dcf282 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期三, 20 三月 2024 19:08:10 +0800
Subject: [PATCH] crm发货申请补充发货单号
---
proto/product_inventory.proto | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/proto/product_inventory.proto b/proto/product_inventory.proto
index 97640bb..35789d9 100644
--- a/proto/product_inventory.proto
+++ b/proto/product_inventory.proto
@@ -7,6 +7,7 @@
rpc GetInventoryProductInfo(GetInventoryProductInfoRequest) returns (GetInventoryProductInfoResponse) {}
rpc UpdateSalesDetailStatus(UpdateSalesDetailStatusRequest) returns (UpdateSalesDetailStatusResponse) {}
rpc GetOrderInputAndOutputInfo(GetOrderInputAndOutputInfoRequest) returns (GetOrderInputAndOutputInfoResponse) {}
+ rpc OrderProductOutput(OrderProductOutputRequest) returns (OrderProductOutputResponse) {}
}
message CreateOperationRequest{
@@ -92,6 +93,8 @@
string Amount = 11; //鏁伴噺
FinishStatus Status = 13;
string CreateTime = 14;
+ int64 LocationID = 15;
+ int64 WareHouseID = 16;
}
message GetOrderInputAndOutputInfoRequest {
string Number = 1;//鏄庣粏鍗曠紪鐮�
@@ -102,4 +105,20 @@
string Msg = 2;
repeated InputAndOutputInfo InputList = 3;
repeated InputAndOutputInfo OutputList = 4;
+}
+
+message OutputProduct {
+ string Number = 1;//浜у搧缂栫爜
+ string Amount = 2; //鍙戣揣鏁伴噺
+}
+
+
+message OrderProductOutputRequest {
+ string OrderNumber = 1;//鏄庣粏鍗曠紪鐮�
+ repeated OutputProduct Products= 2;//鍙戣揣鏄庣粏
+}
+
+message OrderProductOutputResponse {
+ int32 Code = 1;
+ string Msg = 2;
}
\ No newline at end of file
--
Gitblit v1.8.0