From 0b7ac10fc4d26e1ef63470a42f40d666bec8692b Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期四, 04 七月 2024 19:51:11 +0800
Subject: [PATCH] 产品位置库存表增加仓库id冗余字段
---
request/location_product_amount.go | 46 ++++++++++++++++++++++++++++++++++++----------
1 files changed, 36 insertions(+), 10 deletions(-)
diff --git a/request/location_product_amount.go b/request/location_product_amount.go
index 82a7b48..4deb759 100644
--- a/request/location_product_amount.go
+++ b/request/location_product_amount.go
@@ -1,26 +1,52 @@
package request
-import "github.com/shopspring/decimal"
+import (
+ "github.com/shopspring/decimal"
+ "wms/models"
+)
+
+type GetList struct {
+ PageInfo
+ Keyword string `json:"keyword"`
+}
type AddLocationProductAmount struct {
- LocationId int `json:"locationId"`
- ProductId string `json:"productId"`
- Amount decimal.Decimal `json:"Amount"` //搴撳瓨鏁伴噺
AdjustAmount decimal.Decimal `json:"adjustAmount" ` //宸��
DifferenceAmount decimal.Decimal `json:"differenceAmount"` //璁℃暟鏁伴噺
+ Amount decimal.Decimal `json:"Amount"` //搴撳瓨鏁伴噺
+ ProductId string `json:"productId"`
+ LocationId int `json:"locationId"`
}
type UpdateLocationProductAmount struct {
//LocationProductAmountId int `json:"locationProductAmountId"` //搴撳瓨鐩樼偣id
- AdjustAmount decimal.Decimal `json:"adjustAmount" ` //宸��
- DifferenceAmount decimal.Decimal `json:"differenceAmount"` //璁℃暟鏁伴噺
- OperationId int `json:"operationId"` //鍑哄叆搴搃d
- Amount decimal.Decimal `json:"Amount"` //搴撳瓨鏁伴噺
- ProductId string `json:"productId"` //浜у搧id
+ AdjustAmount decimal.Decimal `json:"adjustAmount" ` //宸��
+ DifferenceAmount decimal.Decimal `json:"differenceAmount"` //璁℃暟鏁伴噺
+ Amount decimal.Decimal `json:"amount"` //搴撳瓨鏁伴噺
+ ProductId string `json:"productId"` //浜у搧id
+ OperationId int `json:"operationId"` //鍑哄叆搴搃d
+ LocationId int `json:"locationId"` //浣嶇疆id
+ ProductCategoryId int `json:"productCategoryId"` //浜у搧绉嶇被id
+}
+
+type GetRuleList struct {
+ LocationId int `json:"locationId"` //浣嶇疆id
+ ProductId string `json:"productId"` //浜у搧id
}
type FinishLocationProductAmount struct {
- LocationProductAmountId int `json:"locationProductAmountId"` //搴撳瓨鐩樼偣id
OperationId int `json:"operationId"` //鍑哄叆搴搃d
ProductId string `json:"productId"` //浜у搧id
+ LocationProductAmountId int `json:"locationProductAmountId"` //搴撳瓨鐩樼偣id
+}
+
+type GetLocationProductList struct {
+ PageInfo
+ Keyword string `json:"keyword"`
+ WarehouseId int `json:"warehouseId"`
+ LocationId int `json:"locationId"`
+}
+
+type GetLocationProductListResponse struct {
+ models.Material
}
--
Gitblit v1.8.0