From 313617ceb05dd5194d2091c717a25cbf33ef39b9 Mon Sep 17 00:00:00 2001 From: zhangqian <zhangqian@123.com> Date: 星期五, 24 十一月 2023 14:39:25 +0800 Subject: [PATCH] 新增history加入索引 --- controllers/operation.go | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/controllers/operation.go b/controllers/operation.go index 136a9c3..c0b34f4 100644 --- a/controllers/operation.go +++ b/controllers/operation.go @@ -24,10 +24,12 @@ "wms/opa" "wms/pkg/logx" "wms/pkg/structx" + "wms/proto/client" "wms/proto/product_inventory" "wms/proto/purchase_wms" "wms/proto/supplier" "wms/request" + "wms/service" "wms/utils/http" "wms/utils/upload" ) @@ -715,6 +717,7 @@ OperationTypeId: operation.OperationTypeId, OperationTypeName: operation.OperationTypeName, OperationId: operation.Id, + ProductId: v.ProductId, ProductName: v.Product.Name, Amount: v.Amount, Unit: v.Product.Unit, @@ -729,6 +732,9 @@ } if err := db.Model(&models.MoveHistory{}).Create(&histories).Error; err != nil { return err + } + for _, history := range histories { + service.AddNewHistoryReportRecord(history.Id) } return nil } @@ -1084,3 +1090,21 @@ } util.ResponseFormat(c, code.Success, resp.List) } + +// GetClientList +// @Tags 鍏ュ簱/鍑哄簱 +// @Summary 鑾峰彇鐗╂祦鍏徃鍒楄〃 +// @Produce application/json +// +// @Success 200 {object} util.Response "鎴愬姛" +// +// @Router /api-wms/v1/operation/getClientList [get] +func (slf OperationController) GetClientList(c *gin.Context) { + cli := client.NewClientServiceClient(client.ClientConn) + resp, err := cli.GetClientList(c, &client.ClientListRequest{}) + if err != nil { + util.ResponseFormat(c, code.RequestParamError, "grpc璋冪敤澶辫触:"+err.Error()) + return + } + util.ResponseFormat(c, code.Success, resp.List) +} -- Gitblit v1.8.0