From 845f1b6da081aae73325e558356f9ab8a851462e Mon Sep 17 00:00:00 2001 From: liujiandao <274878379@qq.com> Date: 星期五, 10 十一月 2023 15:05:12 +0800 Subject: [PATCH] 确认出库修改crm销售明细状态 --- proto/product_inventory.proto | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/proto/product_inventory.proto b/proto/product_inventory.proto index ad9328d..7da35cb 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{ @@ -51,4 +52,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