From 98961b50ca71608110e0156e7dfb30c8e1c46a27 Mon Sep 17 00:00:00 2001 From: liujiandao <274878379@qq.com> Date: 星期五, 10 十一月 2023 16:06:18 +0800 Subject: [PATCH] 注释修改 --- proto/product_inventory/server.go | 22 +++++++++++++++++----- 1 files changed, 17 insertions(+), 5 deletions(-) diff --git a/proto/product_inventory/server.go b/proto/product_inventory/server.go index 1dfaf74..a4c77bf 100644 --- a/proto/product_inventory/server.go +++ b/proto/product_inventory/server.go @@ -17,9 +17,12 @@ } type ProductAndLocationInfo struct { - ProductId string `json:"productId"` - Amount decimal.Decimal `json:"amount"` - LocationId int `json:"locationId"` + ProductId string `json:"productId"` + Amount decimal.Decimal `json:"amount"` + LocationId int `json:"locationId"` + Number string `json:"number"` + WaybillNumber string `json:"waybillNumber"` + Name string `json:"name"` } func (s *Server) GetInventoryProductInfo(ctx context.Context, req *GetInventoryProductInfoRequest) (*GetInventoryProductInfoResponse, error) { @@ -29,12 +32,18 @@ //鏌ヨ浜у搧id var details []ProductAndLocationInfo var productIds []string + resp := new(GetInventoryProductInfoResponse) err := models.NewOperationDetailsSearch().Orm.Model(&models.OperationDetails{}). - Select("wms_operation_details.product_id,wms_operation_details.amount,wms_operation.from_location_id as location_id"). + Select("wms_operation_details.product_id,wms_operation_details.amount,wms_operation.from_location_id as location_id,"+ + "wms_operation.number,wms_operation.waybill_number, logistic_company.name"). Joins("left join wms_operation on wms_operation.id = wms_operation_details.operation_id"). + Joins("left join logistic_company on logistic_company.id = wms_operation.logistic_company_id"). Where("wms_operation.source_number = ?", req.Number).Find(&details).Error if err != nil { return nil, err + } + if len(details) == 0 { + return resp, nil } var locationId int for _, detail := range details { @@ -97,6 +106,10 @@ for _, detail := range details { if material.ID == detail.ProductId { p.OrderAmount = detail.Amount.String() + p.Valorem = detail.Amount.Mul(material.SalePrice).String() + p.Invoice = detail.Number + p.Carrier = detail.Name + p.Waybill = detail.WaybillNumber break } } @@ -120,7 +133,6 @@ products = append(products, &p) } - resp := new(GetInventoryProductInfoResponse) resp.ProductList = products return resp, nil } -- Gitblit v1.8.0