Commit 692ce15f by 周晓航

评价有礼开发-兼容老小程序

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent 8cad0697
......@@ -118,6 +118,10 @@ public class EvaluationServiceImpl implements EvaluationService {
String sessionId,
String orderId,
String activityId) {
// 老小程序 没有sessionId 不需要查询评价有礼
if (sessionId == null) {
return null;
}
CheckAndJoinRequest requestCommon = getCheckAndJoinRequest(data, sessionId, orderId, activityId);
BaseResponse<CheckAndJoinResponse> checkAndJoin = activityApplicationClient.checkAndJoin(requestCommon);
if (checkAndJoin != null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment