fix(price): 修复价格分享逻辑错误

- 移除了错误的价格分享判断条件
- 确保价格分享状态正确设置为false
- 优化了价格业务逻辑的代码结构
This commit is contained in:
2025-12-15 08:33:58 +08:00
parent 844bc318ae
commit f08d590a3d

View File

@@ -317,9 +317,6 @@ public class PriceBiz {
} }
} }
respVO.setShare(false); respVO.setShare(false);
if (face == null || !face.getMemberId().equals(userId)) {
respVO.setShare(true);
}
return respVO; return respVO;
} }
} }