From 221108b0e0416968ca8417513ebf65c8b5109662 Mon Sep 17 00:00:00 2001
From: lishihai <dslsh@dscom>
Date: 星期三, 26 六月 2024 11:40:47 +0800
Subject: [PATCH] 库存盘点应用按钮记录创建人,创建时间,应用时间、应用人员等信息;根据条形码查询产品详情;新增编辑产品增加条形码字段->添加条形码被使用验证
---
proto/purchase_wms.proto | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/proto/purchase_wms.proto b/proto/purchase_wms.proto
index 0ae7230..41044ef 100644
--- a/proto/purchase_wms.proto
+++ b/proto/purchase_wms.proto
@@ -2,6 +2,8 @@
option go_package = "./purchase_wms";
+import "common.proto";
+
service PurchaseService {
rpc PurchaseToWms(PurchaseToWmsRequest) returns (PurchaseToWmsResponse);
rpc UpdatePurchaseStatus(UpdatePurchaseStatusRequest) returns (UpdatePurchaseStatusResponse) {}
@@ -28,6 +30,8 @@
int64 SupplierId = 4;//渚涘簲鍟唅d
string WarehouseName = 5;//浠撳簱鍚嶇О
repeated PurchaseProduct Product = 6;
+ OperationSource OperationSource = 7;
+ string SalesDetailsNumber = 8;
}
message PurchaseToWmsResponse {
@@ -130,6 +134,8 @@
//--------------------------------------------------SrmGetOperationInfo---------------------------------------
message SrmGetOperationInfoRequest{
string number = 1;
+ OperationSource OperationSource = 2;
+ string SalesDetailsNumber = 3;
}
message SrmOperation{
--
Gitblit v1.8.0