From 4d73cbcd37a7f51a99973db1a9818289f3260180 Mon Sep 17 00:00:00 2001
From: jiangshuai <291802688@qq.com>
Date: 星期五, 05 一月 2024 17:22:04 +0800
Subject: [PATCH] 调拨增加仓库位置-1
---
proto/product_inventory.proto | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
diff --git a/proto/product_inventory.proto b/proto/product_inventory.proto
index ad9328d..66cab98 100644
--- a/proto/product_inventory.proto
+++ b/proto/product_inventory.proto
@@ -5,6 +5,7 @@
service productInventoryService {
rpc CreateOperation(CreateOperationRequest) returns(CreateOperationResponse) {}
rpc GetInventoryProductInfo(GetInventoryProductInfoRequest) returns (GetInventoryProductInfoResponse) {}
+ rpc UpdateSalesDetailStatus(UpdateSalesDetailStatusRequest) returns (UpdateSalesDetailStatusResponse) {}
}
message CreateOperationRequest{
@@ -13,7 +14,10 @@
string Address = 3;//鏀惰揣鍦板潃
string Phone = 4;
int32 DeliverType = 5;//浜や粯绫诲瀷
- repeated InventoryProduct ProductList = 6;
+ string Source = 6;
+ int64 ClientId = 7;
+ string ClientName = 8;
+ repeated InventoryProduct ProductList = 9;
}
message InventoryProduct{
@@ -33,7 +37,7 @@
}
message ProductInfo{
- string Id = 1;
+ string Number = 1;
string Name = 2;
string OrderAmount = 3;//璁㈠崟鏁伴噺
string Unit = 4;
@@ -51,4 +55,16 @@
int32 Code = 1;
string Msg = 2;
repeated ProductInfo ProductList = 3;
+}
+
+//------------------------------------------------------------
+
+message UpdateSalesDetailStatusRequest {
+ string Number = 1;//鏄庣粏鍗曠紪鐮�
+ string SalesDetailStatus = 2;
+}
+
+message UpdateSalesDetailStatusResponse{
+ int32 Code = 1;
+ string Msg = 2;
}
\ No newline at end of file
--
Gitblit v1.8.0