From 1c8f39c41f903d3c07e8efc8dc49ef7014b45b8e Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期二, 02 七月 2024 18:27:01 +0800 Subject: [PATCH] 未选出入库类型的业务操作在仓库月度报表里归为其他 --- response/report_forms_response.go | 41 +++++++++++++++++++++-------------------- 1 files changed, 21 insertions(+), 20 deletions(-) diff --git a/response/report_forms_response.go b/response/report_forms_response.go index aee3590..cfa6570 100644 --- a/response/report_forms_response.go +++ b/response/report_forms_response.go @@ -2,7 +2,6 @@ import ( "github.com/shopspring/decimal" - "time" "wms/constvar" "wms/models" ) @@ -25,17 +24,18 @@ } type InventoryHistory struct { - Number string `json:"number"` //鍗曞彿 - Date time.Time `json:"date"` //鏃ユ湡 - ProductName string `json:"productName"` //浜у搧鍚嶇О - FromLocation string `json:"fromLocation"` //婧愪綅缃� - ToLocation string `json:"toLocation"` //鐩爣浣嶇疆 - Amount decimal.Decimal `json:"amount"` //鏁伴噺 - Unit string `json:"unit"` //鍗曚綅 - ContactedName string `json:"contactedName"` //瀹屾垚鑰� - Status string `json:"status"` //鐘舵�� - BaseOperationType constvar.BaseOperationType `json:"baseOperationType"` //鍩虹浣滀笟绫诲瀷 - Weight decimal.Decimal `json:"weight"` //閲嶉噺 + Number string `json:"number"` //鍗曞彿 + Date string `json:"date"` //鏃ユ湡 + ProductName string `json:"productName"` //浜у搧鍚嶇О + FromLocation string `json:"fromLocation"` //婧愪綅缃� + ToLocation string `json:"toLocation"` //鐩爣浣嶇疆 + Amount decimal.Decimal `json:"amount"` //鏁伴噺 + AmountMoreUnits []models.UnitItems `json:"amountMoreUnits" gorm:"-"` //鏁伴噺澶氬崟浣� + Unit string `json:"unit"` //鍗曚綅 + ContactedName string `json:"contactedName"` //瀹屾垚鑰� + Status string `json:"status"` //鐘舵�� + BaseOperationType constvar.BaseOperationType `json:"baseOperationType"` //鍩虹浣滀笟绫诲瀷 + Weight decimal.Decimal `json:"weight"` //閲嶉噺 ProductId string `json:"productId"` FromLocationId int `json:"fromLocationId"` ToLocationId int `json:"toLocationId"` @@ -44,12 +44,13 @@ } type LocationForms struct { - ProduceId string `json:"produceId"` //浜у搧id - LocationId int `json:"locationId"` //浣嶇疆id - LocationName string `json:"locationName"` //浣嶇疆鍚嶇О - ProductName string `json:"productName"` //浜у搧鍚嶇О - ProductTypeName string `json:"productTypeName"` //浜у搧绫诲埆 - Amount decimal.Decimal `json:"amount"` //鏁伴噺 - Unit string `json:"unit"` //鍗曚綅 - Value decimal.Decimal `json:"value"` //鎬讳环鍊� + ProduceId string `json:"produceId"` //浜у搧id + LocationId int `json:"locationId"` //浣嶇疆id + LocationName string `json:"locationName"` //浣嶇疆鍚嶇О + ProductName string `json:"productName"` //浜у搧鍚嶇О + ProductTypeName string `json:"productTypeName"` //浜у搧绫诲埆 + Amount decimal.Decimal `json:"amount"` //鏁伴噺 + AmountMoreUnits []models.UnitItems `json:"amountMoreUnits"` //鍦ㄥ簱鏁伴噺澶氬崟浣� + Unit string `json:"unit"` //鍗曚綅 + Value decimal.Decimal `json:"value"` //鎬讳环鍊� } -- Gitblit v1.8.0