d2f9289338
- 新增促销规则/规格促销价/使用记录模型与幂等迁移 - EvaluatePromo 支持 new_user/inactive_user/campaign 规则判定 - purchase/preCreate 接入促销判定:命中促销时跳过百分比折扣 - activate 激活后按 order_no 幂等写入 promo_usage - 订单模型和响应结构新增 promo_rule_id、promo_discount 字段 Co-authored-by: multica-agent <github@multica.ai>
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
package order
|
|
|
|
import (
|
|
"context"
|
|
"math"
|
|
|
|
commonLogic "github.com/perfect-panel/server/internal/logic/common"
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
"github.com/perfect-panel/server/internal/types"
|
|
)
|
|
|
|
type orderPriceResult struct {
|
|
OriginalPrice int64
|
|
PayableBase int64
|
|
DiscountAmount int64
|
|
PromoRuleId int64
|
|
PromoDiscount int64
|
|
PromoPrice int64
|
|
}
|
|
|
|
func calculatePurchasePrice(
|
|
ctx context.Context,
|
|
svcCtx *svc.ServiceContext,
|
|
userID int64,
|
|
subscribeID int64,
|
|
unitPrice int64,
|
|
quantity int64,
|
|
discounts []types.SubscribeDiscount,
|
|
eligibleForDiscount bool,
|
|
allowPromo bool,
|
|
) (*orderPriceResult, error) {
|
|
originalPrice := unitPrice * quantity
|
|
result := &orderPriceResult{
|
|
OriginalPrice: originalPrice,
|
|
PayableBase: originalPrice,
|
|
}
|
|
|
|
if allowPromo {
|
|
promoResult, err := commonLogic.EvaluatePromo(ctx, svcCtx, userID, subscribeID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if promoResult != nil && promoResult.Eligible && promoResult.PromoPrice < unitPrice {
|
|
result.PayableBase = promoResult.PromoPrice * quantity
|
|
result.PromoRuleId = promoResult.RuleID
|
|
result.PromoDiscount = originalPrice - result.PayableBase
|
|
result.PromoPrice = promoResult.PromoPrice
|
|
if result.PromoDiscount < 0 {
|
|
result.PromoDiscount = 0
|
|
}
|
|
return result, nil
|
|
}
|
|
}
|
|
|
|
discount := float64(1)
|
|
if len(discounts) > 0 {
|
|
discount = getDiscount(discounts, quantity, eligibleForDiscount)
|
|
}
|
|
result.PayableBase = int64(math.Round(float64(originalPrice) * discount))
|
|
result.DiscountAmount = originalPrice - result.PayableBase
|
|
return result, nil
|
|
}
|