From 221108b0e0416968ca8417513ebf65c8b5109662 Mon Sep 17 00:00:00 2001
From: lishihai <dslsh@dscom>
Date: 星期三, 26 六月 2024 11:40:47 +0800
Subject: [PATCH] 库存盘点应用按钮记录创建人,创建时间,应用时间、应用人员等信息;根据条形码查询产品详情;新增编辑产品增加条形码字段->添加条形码被使用验证
---
proto/product_inventory.proto | 13 +++----------
1 files changed, 3 insertions(+), 10 deletions(-)
diff --git a/proto/product_inventory.proto b/proto/product_inventory.proto
index e16130f..b8d0e9b 100644
--- a/proto/product_inventory.proto
+++ b/proto/product_inventory.proto
@@ -2,6 +2,8 @@
option go_package = "./product_inventory";
+import "common.proto";
+
service productInventoryService {
rpc CreateOperation(CreateOperationRequest) returns(CreateOperationResponse) {}
rpc GetInventoryProductInfo(GetInventoryProductInfoRequest) returns (GetInventoryProductInfoResponse) {}
@@ -22,16 +24,6 @@
string ClientName = 8;
repeated InventoryProduct ProductList = 9;
OperationSource OperationSource = 10;
-}
-
-enum OperationSource {
- OperationSourceEmpty = 0; //绌�
- OperationSourcePurchase = 1; //閲囪喘鍏ュ簱
- OperationSourceProduction = 2; //鐢熶骇鍏ュ簱
- OperationSourceOutsourcing = 3; //濮斿鍏ュ簱
- OperationSourceProductionApply = 4; //鐢熶骇棰嗘枡
- OperationSourceOutsourcingApply = 5; //濮斿棰嗘枡
- OperationSourceSaleDelivery = 6; //閿�鍞彂璐�
}
message InventoryProduct{
@@ -128,6 +120,7 @@
message OrderProductOutputRequest {
string OrderNumber = 1;//鏄庣粏鍗曠紪鐮�
repeated OutputProduct Products= 2;//鍙戣揣鏄庣粏
+ int64 warehouseId = 3;//鍙戣揣浠撳簱ID
}
message OrderProductOutputResponse {
--
Gitblit v1.8.0