From b0113676f423ca930bc3dd93ac9d9ea292458dfa Mon Sep 17 00:00:00 2001 From: jiangshuai <291802688@qq.com> Date: 星期四, 23 十一月 2023 11:28:56 +0800 Subject: [PATCH] 1.修改MoveHistory字段类型 2.完成MoveHistory插入数据 3.operation增加审批时间、收货人、收货地址、联系电话字段,并修改相应接口以及打印 --- response/report_forms_response.go | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/response/report_forms_response.go b/response/report_forms_response.go index 63ee819..4a60e50 100644 --- a/response/report_forms_response.go +++ b/response/report_forms_response.go @@ -21,12 +21,18 @@ type InventoryHistory struct { 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"` //鏁伴噺 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"` } type LocationForms struct { -- Gitblit v1.8.0