## 赠送等级之后可以继续购买升级;

This commit is contained in:
cabbage 2025-06-25 16:41:44 +08:00
parent a90d130371
commit 3a52c2bc27
1 changed files with 5 additions and 1 deletions

View File

@ -2629,7 +2629,11 @@ public class SaOrderServiceImpl extends ServiceImpl<SaOrderMapper, SaOrder> impl
// 注册专区直接算等级 // 注册专区直接算等级
bdGrade = this.getGradeByBox(boxNum, gradeList, null, true); bdGrade = this.getGradeByBox(boxNum, gradeList, null, true);
// 特殊等级处理 // 特殊等级处理
this.handleGradeEnd(gradeList, bdGrade); BdGrade tmpGrade = this.handleGradeEnd(gradeList, bdGrade);
if (null != isPay && EYesNo.YES.getIntValue() == isPay) {
// 支付时才进行处理
bdGrade = tmpGrade;
}
} else if (ESpecialArea.RETAIL_UPGRADE.getValue() == specialArea) { } else if (ESpecialArea.RETAIL_UPGRADE.getValue() == specialArea) {
// 升级专区一次性补差升级 // 升级专区一次性补差升级
if (boxNum == 0) { if (boxNum == 0) {