|
|
|
|
@@ -11,6 +11,7 @@ import (
|
|
|
|
|
"fusenapi/utils/basic"
|
|
|
|
|
"fusenapi/utils/format"
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"fusenapi/server/product/internal/svc"
|
|
|
|
|
"fusenapi/server/product/internal/types"
|
|
|
|
|
@@ -50,15 +51,21 @@ func (l *GetProductStepPriceLogic) GetProductStepPrice(req *types.GetProductStep
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get product info")
|
|
|
|
|
}
|
|
|
|
|
//查询产品价格
|
|
|
|
|
modelPriceList, err := l.svcCtx.AllModels.FsProductModel3d.GetAllByProductIdTag(l.ctx, req.ProductId, constants.TAG_MODEL, "id,size_id,part_id,step_price,packed_unit")
|
|
|
|
|
modelPriceList, err := l.svcCtx.AllModels.FsProductModel3d.GetAllByProductIdTag(l.ctx, req.ProductId, constants.TAG_MODEL, "id,size_id,part_list,part_id,step_price,packed_unit")
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeDbSqlErr, "failed to get model price list")
|
|
|
|
|
}
|
|
|
|
|
fittingIds := make([]int64, 0, len(modelPriceList))
|
|
|
|
|
for _, v := range modelPriceList {
|
|
|
|
|
if *v.PartId > 0 {
|
|
|
|
|
fittingIds = append(fittingIds, *v.PartId)
|
|
|
|
|
*v.PartList = strings.Trim(*v.PartList, ",")
|
|
|
|
|
if *v.PartList != "" {
|
|
|
|
|
tmpPartIds, err := format.StrSlicToInt64Slice(strings.Split(*v.PartList, ","))
|
|
|
|
|
if err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to parse model part list ")
|
|
|
|
|
}
|
|
|
|
|
fittingIds = append(fittingIds, tmpPartIds...)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//查询配件价格列表
|
|
|
|
|
@@ -73,77 +80,38 @@ func (l *GetProductStepPriceLogic) GetProductStepPrice(req *types.GetProductStep
|
|
|
|
|
}
|
|
|
|
|
//遍历处理模型价格
|
|
|
|
|
mapRsp := make(map[string]interface{})
|
|
|
|
|
for _, modelPriceInfo := range modelPriceList {
|
|
|
|
|
for _, modelInfo := range modelPriceList {
|
|
|
|
|
var stepPrice gmodel.StepPriceJsonStruct
|
|
|
|
|
if err = json.Unmarshal(*modelPriceInfo.StepPrice, &stepPrice); err != nil {
|
|
|
|
|
if err = json.Unmarshal(*modelInfo.StepPrice, &stepPrice); err != nil {
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeJsonErr, "failed to parse step price json")
|
|
|
|
|
}
|
|
|
|
|
rangeLen := len(stepPrice.PriceRange)
|
|
|
|
|
if rangeLen == 0 {
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("step price is not set:%d", modelPriceInfo.Id))
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("step price is not set:%d", modelInfo.Id))
|
|
|
|
|
}
|
|
|
|
|
//最小单价
|
|
|
|
|
minPrice := stepPrice.PriceRange[rangeLen-1].Price
|
|
|
|
|
//最大单价
|
|
|
|
|
maxPrice := stepPrice.PriceRange[0].Price
|
|
|
|
|
//购买数步进基数
|
|
|
|
|
stepPurchaseQuantity := *modelPriceInfo.PackedUnit
|
|
|
|
|
//购买数步进基数描述
|
|
|
|
|
stepPurchaseQuantityDescription := "主体装箱数为步进基数"
|
|
|
|
|
//配件价格
|
|
|
|
|
fittingPrice := int64(0)
|
|
|
|
|
if *modelPriceInfo.PartId > 0 {
|
|
|
|
|
fittingPriceInfo, ok := mapFitting[*modelPriceInfo.PartId]
|
|
|
|
|
if !ok {
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("fitting price is not exists:%d", *modelPriceInfo.PartId))
|
|
|
|
|
}
|
|
|
|
|
//最小/最大价格要加配件
|
|
|
|
|
fittingPrice = *fittingPriceInfo.Price
|
|
|
|
|
minPrice += fittingPrice
|
|
|
|
|
maxPrice += fittingPrice
|
|
|
|
|
//如果配件装箱基数比主体大,则基数以配件为主
|
|
|
|
|
if *fittingPriceInfo.PackedUnit > stepPurchaseQuantity {
|
|
|
|
|
stepPurchaseQuantity = *fittingPriceInfo.PackedUnit
|
|
|
|
|
stepPurchaseQuantityDescription = "配件装箱数为步进基数"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
stepRange := make([]interface{}, 0, rangeLen)
|
|
|
|
|
for rIndex, rangeInfo := range stepPrice.PriceRange {
|
|
|
|
|
//最后一个
|
|
|
|
|
if rIndex+1 == rangeLen {
|
|
|
|
|
begin := format.NumToStringWithThousandthPercentile(fmt.Sprintf("%d", rangeInfo.StartQuantity))
|
|
|
|
|
stepRange = append(stepRange, map[string]interface{}{
|
|
|
|
|
"start": rangeInfo.StartQuantity,
|
|
|
|
|
"end": rangeInfo.EndQuantity,
|
|
|
|
|
"range_description": fmt.Sprintf(">=%s Units", begin),
|
|
|
|
|
"item_price": format.CentitoDollar(rangeInfo.Price+fittingPrice, 3),
|
|
|
|
|
})
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
begin := format.NumToStringWithThousandthPercentile(fmt.Sprintf("%d", rangeInfo.StartQuantity))
|
|
|
|
|
end := format.NumToStringWithThousandthPercentile(fmt.Sprintf("%d", rangeInfo.EndQuantity))
|
|
|
|
|
stepRange = append(stepRange, map[string]interface{}{
|
|
|
|
|
"start": rangeInfo.StartQuantity,
|
|
|
|
|
"end": rangeInfo.EndQuantity,
|
|
|
|
|
"range_description": fmt.Sprintf("%s-%s Units", begin, end),
|
|
|
|
|
"item_price": format.CentitoDollar(rangeInfo.Price+fittingPrice, 3),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
//计算起购数量的单价
|
|
|
|
|
_, itemPrice, err := l.svcCtx.Repositories.NewShoppingCart.CaculateStepPrice(stepPrice.MinBuyUnitsNum, stepPrice, fittingPrice)
|
|
|
|
|
*modelInfo.PartList = strings.Trim(*modelInfo.PartList, ",")
|
|
|
|
|
mapFittingUnit := make(map[string]interface{})
|
|
|
|
|
if *modelInfo.PartList != "" {
|
|
|
|
|
tmpPartIds, err := format.StrSlicToInt64Slice(strings.Split(*modelInfo.PartList, ","))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to get min buy quantity item price")
|
|
|
|
|
logx.Error(err)
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, "failed to parse model part list!! ")
|
|
|
|
|
}
|
|
|
|
|
mapRsp[fmt.Sprintf("_%d", *modelPriceInfo.SizeId)] = map[string]interface{}{
|
|
|
|
|
"step_purchase_quantity": stepPurchaseQuantity,
|
|
|
|
|
"step_purchase_quantity_description": stepPurchaseQuantityDescription,
|
|
|
|
|
"min_price": minPrice,
|
|
|
|
|
"max_price": maxPrice,
|
|
|
|
|
"step_range": stepRange,
|
|
|
|
|
"min_buy_units_quantity": stepPrice.MinBuyUnitsNum,
|
|
|
|
|
"min_buy_units_quantity_total_price": format.CentitoDollarWithNoHalfAdjust(itemPrice*stepPrice.MinBuyUnitsNum, 2),
|
|
|
|
|
"min_buy_units_quantity_item_price": format.CentitoDollar(itemPrice, 3),
|
|
|
|
|
for _, partId := range tmpPartIds {
|
|
|
|
|
fittingInfo, ok := mapFitting[*modelInfo.PartId]
|
|
|
|
|
if !ok {
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeServiceErr, fmt.Sprintf("fitting price is not exists:%d", *modelInfo.PartId))
|
|
|
|
|
}
|
|
|
|
|
mapFittingUnit[fmt.Sprintf("_%d", partId)] = map[string]interface{}{
|
|
|
|
|
"packed_unit": *fittingInfo.PackedUnit, //装箱个数
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mapRsp[fmt.Sprintf("_%d", *modelInfo.SizeId)] = map[string]interface{}{
|
|
|
|
|
"min_buy_units_quantity": stepPrice.MinBuyUnitsNum, //起购数量
|
|
|
|
|
"main_packed_unit": *modelInfo.PackedUnit, //主体装箱数
|
|
|
|
|
"fitting": mapFittingUnit,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return resp.SetStatusWithMessage(basic.CodeOK, "success", mapRsp)
|
|
|
|
|
|