会员退款

This commit is contained in:
wangw 2025-03-07 09:19:24 +08:00
parent 8c344d674a
commit cf09ad1267
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ public class PayServiceImpl implements PayService {
ShopUser shopUser = shopUserService.getShopUserInfo(refPayParam.getShopId(), refPayParam.getUserId());
ShopUserFlow inFlow = userFlowService.getById(refPayParam.getFlowId());
AssertUtil.isNull(inFlow, "充值记录不存在");
if (inFlow.getBizCode().equals("cashIn")) {
if ("cashIn".equals(inFlow.getBizCode()) || "adminIn".equals(inFlow.getBizCode())) {
refPayParam.setCashRefund(true);
}
QueryWrapper queryWrapper = new QueryWrapper();