fix(order): 修正订单商品名称逻辑并更新购买检查参数

- 修改AppPuzzleController中isBuy方法的参数传递逻辑
- 在OrderServiceImpl中为未知类型添加默认商品名称
- 统一景区相关商品的命名规则
This commit is contained in:
2025-11-21 10:03:10 +08:00
parent 9123a1f6db
commit 6ef710201c
2 changed files with 3 additions and 1 deletions

View File

@@ -447,6 +447,8 @@ public class OrderServiceImpl implements OrderService {
goodsName = "景区录像包";
} else if (type == 2) {
goodsName = "景区照片包";
} else {
goodsName = "景区售卖物品";
}
}
wxPayOrderReqVO.setOpenId(order.getOpenId())