From 96844c22ef3fba86a55e0af1b51bc1009d6fa950 Mon Sep 17 00:00:00 2001 From: jiangshuai <291802688@qq.com> Date: 星期五, 20 十月 2023 11:57:48 +0800 Subject: [PATCH] 1.库存盘点bug修改 --- controllers/operation.go | 423 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 402 insertions(+), 21 deletions(-) diff --git a/controllers/operation.go b/controllers/operation.go index bbe2288..dc07598 100644 --- a/controllers/operation.go +++ b/controllers/operation.go @@ -4,6 +4,12 @@ "errors" "fmt" "github.com/gin-gonic/gin" + "github.com/shopspring/decimal" + "gorm.io/gorm" + "sort" + "strconv" + "time" + "wms/constvar" "wms/extend/code" "wms/extend/util" "wms/models" @@ -26,23 +32,95 @@ var reqParams request.AddOperation var params models.Operation if err := c.BindJSON(&reqParams); err != nil { - util.ResponseFormat(c, code.RequestParamError, "鍙傛暟瑙f瀽澶辫触锛屾暟鎹被鍨嬮敊璇�"+err.Error()) + util.ResponseFormat(c, code.RequestParamError, "鍙傛暟瑙f瀽澶辫触锛屾暟鎹被鍨嬮敊璇�") return } - if err := structx.AssignTo(reqParams, params); err != nil { - util.ResponseFormat(c, code.RequestParamError, "鏁版嵁杞崲閿欒") + if err := structx.AssignTo(reqParams, ¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, "鏁版嵁杞崲閿欒"+err.Error()) return } if err := slf.CheckParams(params); err != nil { util.ResponseFormat(c, code.RequestParamError, err.Error()) return } + if err := slf.FormatLocation(¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, err.Error()) + return + } + + if CheckDetailsRepeat(params.Details) { + util.ResponseFormat(c, code.RequestParamError, "鏄庣粏涓笉鑳藉瓨鍦ㄩ噸澶嶇殑浜у搧") + return + } + + operationType, err := models.NewOperationTypeSearch().SetID(uint(params.OperationTypeId)).First() + if err != nil { + util.ResponseFormat(c, code.RequestParamError, err.Error()) + return + } + + params.Status = constvar.OperationStatus_Ready + params.Number = strconv.FormatInt(time.Now().Unix(), 10) + params.BaseOperationType = operationType.BaseOperationType if err := models.NewOperationSearch().Create(¶ms); err != nil { logx.Errorf("Operation create err: %v", err) util.ResponseFormat(c, code.SaveFail, "娣诲姞澶辫触锛�"+err.Error()) return } util.ResponseFormat(c, code.Success, "娣诲姞鎴愬姛") +} + +func CheckDetailsRepeat(details []*models.OperationDetails) bool { + detailIDs := []string{} + var tempID string + for _, v := range details { + detailIDs = append(detailIDs, v.ProductId) + } + sort.Strings(detailIDs) + for _, v := range detailIDs { + if v != tempID { + tempID = v + } else { + return true + } + } + return false +} + +func (slf OperationController) FormatLocation(params *models.Operation) error { + operationType, err := models.NewOperationTypeSearch().SetID(uint(params.OperationTypeId)).First() + if err != nil { + return err + } + if operationType.BaseOperationType == constvar.BaseOperationTypeIncoming { + if location, err := models.NewLocationSearch().SetType(int(constvar.LocationTypeVendor)).First(); err != nil { + return err + } else { + params.FromLocationID = location.Id + } + if params.ToLocationID == 0 { + return errors.New("璇烽�夋嫨鐩爣浣嶇疆") + } + } + if operationType.BaseOperationType == constvar.BaseOperationTypeOutgoing { + if location, err := models.NewLocationSearch().SetType(int(constvar.LocationTypeCustomer)).First(); err != nil { + return err + } else { + params.ToLocationID = location.Id + } + if params.FromLocationID == 0 { + return errors.New("璇烽�夋嫨婧愪綅缃�") + } + } + if operationType.BaseOperationType == constvar.BaseOperationTypeInternal { + if params.ToLocationID == 0 { + return errors.New("璇烽�夋嫨鐩爣浣嶇疆") + } + if params.FromLocationID == 0 { + return errors.New("璇烽�夋嫨婧愪綅缃�") + } + } + return nil } func (slf OperationController) CheckParams(params models.Operation) error { @@ -52,14 +130,6 @@ if params.OperationTypeId == 0 { return errors.New("operationTypeId涓�0") - } - - if params.FromLocationId == 0 { - return errors.New("璇烽�夋嫨婧愪綅缃�") - } - - if params.ToLocationId == 0 { - return errors.New("璇烽�夋嫨鐩爣浣嶇疆") } if params.OperationDate == "" { @@ -72,20 +142,331 @@ //妫�鏌ユ槑缁嗛儴鍒� for _, v := range params.Details { - if v.ProductId == 0 { - return errors.New("productID涓�0") + if v.ProductId == "" { + return errors.New("productID涓虹┖") } - if v.ProductName == "" { - return errors.New("浜у搧鍚嶇О寮傚父") - } - if v.Quantity.IsNegative() { - return errors.New("浜у搧鏁伴噺鍑洪敊") - } - if v.FinishQuantity.IsNegative() { + //if v.ProductName == "" { + // return errors.New("浜у搧鍚嶇О寮傚父") + //} + if v.Amount.IsNegative() { return errors.New("浜у搧鏁伴噺鍑洪敊") } } - fmt.Println(111111) return nil } + +// List +// @Tags 鍏ュ簱/鍑哄簱 +// @Summary 鍏ュ簱/鍑哄簱鍒楄〃 +// @Produce application/json +// @Param object body request.OperationList true "鏌ヨ鍙傛暟" +// @Success 200 {object} util.Response "鎴愬姛" +// @Router /api-wms/v1/operation/list [post] +func (slf OperationController) List(c *gin.Context) { + var params request.OperationList + if err := c.BindJSON(¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, "鍙傛暟瑙f瀽澶辫触锛屾暟鎹被鍨嬮敊璇�:"+err.Error()) + return + } + if err := slf.CheckListParams(¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, err.Error()) + return + } + search := models.NewOperationSearch() + search.SetPage(params.Page, params.PageSize) + if params.Number != "" { + search.SetKeyword(params.Number) + } + list, total, err := search.SetOperationTypeId(params.OperationTypeId).SetPreload(true).SetOrder("created_at desc").Find() + if err != nil { + util.ResponseFormat(c, code.RequestError, "鏌ユ壘澶辫触:"+err.Error()) + return + } + + util.ResponseFormatListWithPage(c, code.Success, list, int(total), params.Page, params.PageSize) +} + +func (slf OperationController) CheckListParams(params *request.OperationList) error { + if !params.PageInfo.Check() { + return errors.New("鏁版嵁鍒嗛〉淇℃伅閿欒") + } + if params.OperationTypeId == 0 { + return errors.New("operationTypeId涓�0") + } + return nil +} + +// Update +// @Tags 鍏ュ簱/鍑哄簱 +// @Summary 淇敼鍏ュ簱/鍑哄簱淇℃伅 +// @Produce application/json +// @Param object body request.UpdateOperation true "鍏ュ簱淇℃伅" +// @Success 200 {object} util.Response "鎴愬姛" +// @Router /api-wms/v1/operation/update [post] +func (slf OperationController) Update(c *gin.Context) { + var reqParams request.UpdateOperation + var params models.Operation + if err := c.BindJSON(&reqParams); err != nil { + util.ResponseFormat(c, code.RequestParamError, "鍙傛暟瑙f瀽澶辫触锛屾暟鎹被鍨嬮敊璇細"+err.Error()) + return + } + if reqParams.Status != constvar.OperationStatus_Ready { + util.ResponseFormat(c, code.RequestParamError, "璇ュ叆搴撲俊鎭凡瀹屾垚锛屾棤娉曡繘琛屼慨鏀�") + return + } + if err := structx.AssignTo(reqParams, ¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, "鏁版嵁杞崲閿欒"+err.Error()) + return + } + if err := slf.CheckParams(params); err != nil { + util.ResponseFormat(c, code.RequestParamError, err.Error()) + return + } + if CheckDetailsRepeat(params.Details) { + util.ResponseFormat(c, code.RequestParamError, "鏄庣粏涓笉鑳藉瓨鍦ㄩ噸澶嶇殑浜у搧") + return + } + if err := slf.FormatLocation(¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, err.Error()) + return + } + if err := models.WithTransaction(func(tx *gorm.DB) error { + if err := models.NewOperationDetailsSearch().SetOrm(tx).SetOperationId(params.Id).Delete(); err != nil { + return err + } + operationSearch := models.NewOperationSearch().SetOrm(tx) + if err := operationSearch.Orm.Model(¶ms).Association("Details").Replace(params.Details); err != nil { + return err + } + if err := models.NewOperationSearch().SetOrm(tx).SetID(params.Id).Save(¶ms); err != nil { + return err + } + return nil + }); err != nil { + util.ResponseFormat(c, code.RequestParamError, "淇敼澶辫触锛�"+err.Error()) + return + } + + util.ResponseFormat(c, code.Success, "淇敼鎴愬姛") +} + +// DeleteDevice +// +// @Tags 鍏ュ簱/鍑哄簱 +// @Summary 鍒犻櫎鍏ュ簱/鍑哄簱淇℃伅 +// @Produce application/json +// @Param id path int true "id" +// @Success 200 {object} util.Response "鎴愬姛" +// @Router /api-wms/v1/operation/operation/{id} [delete] +func (slf OperationController) Delete(c *gin.Context) { + id, err := strconv.Atoi(c.Param("id")) + if err != nil { + util.ResponseFormat(c, code.RequestParamError, "閿欒鐨刬d鍊�") + return + } + if id == 0 { + util.ResponseFormat(c, code.RequestParamError, "id涓�0") + return + } + operation, err := models.NewOperationSearch().SetID(id).First() + if err != nil { + util.ResponseFormat(c, code.RequestParamError, "鏈壘鍒扮浉鍏冲嚭鍏ュ簱淇℃伅:"+err.Error()) + return + } + if operation.Status != constvar.OperationStatus_Ready { + util.ResponseFormat(c, code.RequestError, "璇ュ叆搴撲俊鎭棤娉曡繘琛屽垹闄�") + return + } + if err := models.WithTransaction(func(tx *gorm.DB) error { + if err := models.NewOperationDetailsSearch().SetOrm(tx).SetOperationId(id).Delete(); err != nil { + return err + } + if err := models.NewOperationSearch().SetOrm(tx).SetID(id).Delete(); err != nil { + return err + } + return nil + }); err != nil { + util.ResponseFormat(c, code.RequestParamError, "淇敼澶辫触锛�"+err.Error()) + return + } + util.ResponseFormat(c, code.Success, "鍒犻櫎鎴愬姛") +} + +// DeleteDevice +// +// @Tags 鍏ュ簱/鍑哄簱 +// @Summary 鏇存敼璁板綍鐘舵�� +// @Produce application/json +// @Param id path int true "id" +// @Success 200 {object} util.Response "鎴愬姛" +// @Router /api-wms/v1/operation/finish/{id} [put] +func (slf OperationController) Finish(c *gin.Context) { + id, err := strconv.Atoi(c.Param("id")) + if err != nil { + util.ResponseFormat(c, code.RequestParamError, "閿欒鐨刬d鍊�") + return + } + if id == 0 { + util.ResponseFormat(c, code.RequestParamError, "id涓�0") + return + } + operation, err := models.NewOperationSearch().SetID(id).First() + if err != nil { + util.ResponseFormat(c, code.RequestParamError, "鏈壘鍒扮浉鍏冲嚭鍏ュ簱淇℃伅:"+err.Error()) + return + } + if operation.Status != constvar.OperationStatus_Ready { + util.ResponseFormat(c, code.RequestError, "璇ュ嚭鍏ュ簱淇℃伅鏃犳硶瀹屾垚") + return + } + operationType, err := models.NewOperationTypeSearch().SetID(uint(operation.OperationTypeId)).First() + if err != nil { + util.ResponseFormat(c, code.RequestError, err.Error()) + return + } + if err := models.WithTransaction(func(tx *gorm.DB) error { + + if err := models.NewOperationSearch().SetOrm(tx).SetID(id).Update(&models.Operation{Status: constvar.OperationStatus_Finish}); err != nil { + return err + } + //if operationType.BaseOperationType != constvar.BaseOperationTypeInternal { + var listProdtId []string + var listProdt []*models.Material + mapProdt := make(map[string]decimal.Decimal) + listDetails, err := models.NewOperationDetailsSearch().SetOperationId(operation.Id).FindAll() + if err != nil { + return err + } + for _, v := range listDetails { + listProdtId = append(listProdtId, v.ProductId) + mapProdt[v.ProductId] = v.Amount + } + if err := models.NewMaterialSearch().Orm.Where("id IN ?", listProdtId).Find(&listProdt).Error; err != nil { + return err + } + if operationType.BaseOperationType == constvar.BaseOperationTypeIncoming { + for k, v := range listProdt { + if value, ok := mapProdt[v.ID]; !ok { + return errors.New("浜у搧绉嶇被寮傚父") + } else { + listProdt[k].Amount = listProdt[k].Amount.Add(value) + if err := tx.Save(listProdt[k]).Error; err != nil { + return err + } + //TODO:鍑哄叆搴撶殑finish鍜屾姤搴熺殑finish閮借澧炲姞瀵筶ocation_product_amount琛ㄦ暟閲忕殑鏇存柊,鍥犱负姝よ〃鏈塒roductCategory瀛楁锛屾墍浠peration_details琛ㄤ腑瑕佸鍔燩roductCategoryId瀛楁 + var locAmount models.LocationProductAmount + if err := models.NewLocationProductAmountSearch().Orm. + Table("wms_location_product_amount"). + Joins("inner join wms_location_product on wms_location_product.id=wms_location_product_amount.location_product_id"). + Where("wms_location_product.product_id=? and wms_location_product.location_id=?", v.ID, operation.ToLocationID). + First(&locAmount).Error; err != nil { + return err + } + locAmount.Amount = locAmount.Amount.Add(value) + if err := models.NewLocationProductAmountSearch().SetID(locAmount.Id).Update(&locAmount); err != nil { + return err + } + } + } + + } + if operationType.BaseOperationType == constvar.BaseOperationTypeOutgoing { + for k, v := range listProdt { + if value, ok := mapProdt[v.ID]; !ok { + return errors.New("浜у搧绉嶇被寮傚父") + } else { + if v.Amount.LessThan(value) { + return errors.New(fmt.Sprintf("浜у搧锛�%v,搴撳瓨锛�%v,鍑哄簱锛�%v,鏁伴噺涓嶅锛屾棤娉曞畬鎴愬嚭搴撴搷浣�", v.Name, v.Amount.String(), value.String())) + } + listProdt[k].Amount = listProdt[k].Amount.Sub(value) + if err := tx.Save(listProdt[k]).Error; err != nil { + return err + } + var locAmount models.LocationProductAmount + if err := models.NewLocationProductAmountSearch().Orm.Table("wms_location_product_amount").Joins("inner join wms_location_product on wms_location_product.id=wms_location_product_amount.location_product_id").Where("wms_location_product.product_id=? and wms_location_product.location_id=?", v.ID, operation.FromLocationID).First(&locAmount).Error; err != nil { + return err + } + if locAmount.Amount.LessThan(value) { + return errors.New(fmt.Sprintf("浜у搧锛�%v,搴撳瓨锛�%v,鍑哄簱锛�%v,鏁伴噺涓嶅锛屾棤娉曞畬鎴愬嚭搴撴搷浣�", v.Name, v.Amount.String(), value.String())) + } + locAmount.Amount = locAmount.Amount.Sub(value) + if err := models.NewLocationProductAmountSearch().SetID(locAmount.Id).Update(&locAmount); err != nil { + return err + } + } + } + } + if operationType.BaseOperationType == constvar.BaseOperationTypeInternal { + for k, v := range listProdt { + if value, ok := mapProdt[v.ID]; !ok { + return errors.New("浜у搧绉嶇被寮傚父") + } else { + listProdt[k].Amount = listProdt[k].Amount.Add(value) + if err := tx.Save(listProdt[k]).Error; err != nil { + return err + } + //TODO:鍑哄叆搴撶殑finish鍜屾姤搴熺殑finish閮借澧炲姞瀵筶ocation_product_amount琛ㄦ暟閲忕殑鏇存柊,鍥犱负姝よ〃鏈塒roductCategory瀛楁锛屾墍浠peration_details琛ㄤ腑瑕佸鍔燩roductCategoryId瀛楁 + var fromAmount, toAmount models.LocationProductAmount + if err := models.NewLocationProductAmountSearch().Orm.Table("wms_location_product_amount").Joins("inner join wms_location_product on wms_location_product.id=wms_location_product_amount.location_product_id").Where("wms_location_product.product_id=? and wms_location_product.location_id=?", v.ID, operation.FromLocationID).Find(&fromAmount).Error; err != nil { + return err + } + if fromAmount.Amount.LessThan(value) { + return errors.New(fmt.Sprintf("浜у搧锛�%v,搴撳瓨锛�%v,璋冩嫧锛�%v,鏁伴噺涓嶅锛屾棤娉曞畬鎴愯皟鎷ㄦ搷浣�", v.Name, v.Amount.String(), value.String())) + } + fromAmount.Amount = fromAmount.Amount.Sub(value) + if err := models.NewLocationProductAmountSearch().SetID(fromAmount.Id).Update(&fromAmount); err != nil { + return err + } + + if err := models.NewLocationProductAmountSearch().Orm.Table("wms_location_product_amount").Joins("inner join wms_location_product on wms_location_product.id=wms_location_product_amount.location_product_id").Where("wms_location_product.product_id=? and wms_location_product.location_id=?", v.ID, operation.ToLocationID).Find(&toAmount).Error; err != nil { + return err + } + toAmount.Amount = toAmount.Amount.Add(value) + if err := models.NewLocationProductAmountSearch().SetID(toAmount.Id).Update(&toAmount); err != nil { + return err + } + } + } + + } + + //} + return nil + }); err != nil { + util.ResponseFormat(c, code.RequestError, err.Error()) + return + } + util.ResponseFormat(c, code.Success, "鎿嶄綔鎴愬姛") +} + +// ListAll +// @Tags 鍏ュ簱/鍑哄簱 +// @Summary 璋冩嫧 +// @Produce application/json +// @Param object body request.OperationAllList true "鍙傛暟" +// @Success 200 {object} util.Response "鎴愬姛" +// @Router /api-wms/v1/operation/listAll [post] +func (slf OperationController) ListAll(c *gin.Context) { + var params request.OperationAllList + if err := c.BindJSON(¶ms); err != nil { + util.ResponseFormat(c, code.RequestParamError, "鍙傛暟瑙f瀽澶辫触锛屾暟鎹被鍨嬮敊璇�:"+err.Error()) + return + } + if !params.PageInfo.Check() { + util.ResponseFormat(c, code.RequestParamError, "鏁版嵁鍒嗛〉淇℃伅閿欒") + return + } + search := models.NewOperationSearch() + search.SetPage(params.Page, params.PageSize) + search.SetPage(params.Page, params.PageSize) + if params.Number != "" { + search.SetKeyword(params.Number) + } + list, total, err := search.SetPreload(true).SetOrder("created_at desc").Find() + if err != nil { + util.ResponseFormat(c, code.RequestError, "鏌ユ壘澶辫触:"+err.Error()) + return + } + util.ResponseFormatListWithPage(c, code.Success, list, int(total), params.Page, params.PageSize) +} -- Gitblit v1.8.0