diff --git a/backend/services/admin-service/src/pricing/tree-pricing.service.ts b/backend/services/admin-service/src/pricing/tree-pricing.service.ts index 1680533f..5a4b22bb 100644 --- a/backend/services/admin-service/src/pricing/tree-pricing.service.ts +++ b/backend/services/admin-service/src/pricing/tree-pricing.service.ts @@ -52,12 +52,15 @@ export class TreePricingService { } const totalPrice = BASE_PRICE + config.currentSupplement; + // 预种价格 = 基础预种价(3566) + floor(加价部分/5) + // 注意:3566 不是 15831/5,而是各权益项 floor(amount/5) 之和 + 总部吸收余额 + const totalPortionPrice = BASE_PORTION_PRICE + Math.floor(config.currentSupplement / 5); return { basePrice: BASE_PRICE, basePortionPrice: BASE_PORTION_PRICE, currentSupplement: config.currentSupplement, totalPrice, - totalPortionPrice: Math.floor(totalPrice / 5), + totalPortionPrice, autoIncreaseEnabled: config.autoIncreaseEnabled, autoIncreaseAmount: config.autoIncreaseAmount, autoIncreaseIntervalDays: config.autoIncreaseIntervalDays,