From c965651da313fa6b41d0f07d7910824c57582cae Mon Sep 17 00:00:00 2001
From: lishihai <dslsh@dscom>
Date: 星期三, 26 六月 2024 11:55:18 +0800
Subject: [PATCH] 库存盘点应用按钮记录创建人,创建时间,应用时间、应用人员等信息;根据条形码查询产品详情;新增编辑产品增加条形码字段->添加条形码被使用验证

---
 request/reorder_rule_request.go |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/request/reorder_rule_request.go b/request/reorder_rule_request.go
index bd33ec4..53e5c53 100644
--- a/request/reorder_rule_request.go
+++ b/request/reorder_rule_request.go
@@ -7,15 +7,18 @@
 
 type GetReorderRuleList struct {
 	PageInfo
-	KeyWord string `json:"keyWord"`
+	KeyWord    string `json:"keyWord"`
+	LocationId int    `json:"locationId"`
+	ProductId  string `json:"productId"`
+	Type       string `json:"type"` //绫诲瀷:bh=琛ヨ揣
 }
 
 type ProductAmount struct {
-	ProductId      string                   `json:"productId"`
-	ToLocationId   int                      `json:"toLocationId"`
-	FromLocationId int                      `json:"fromLocationId"`
-	Amount         decimal.Decimal          `json:"amount"`
-	Status         constvar.OperationStatus `json:"status"`
+	ProductId         string                     `json:"productId"`
+	ToLocationId      int                        `json:"toLocationId"`
+	FromLocationId    int                        `json:"fromLocationId"`
+	Amount            decimal.Decimal            `json:"amount"`
+	BaseOperationType constvar.BaseOperationType `json:"baseOperationType"`
 }
 
 type GetAmountAndPrediction struct {

--
Gitblit v1.8.0