add notification
Some checks failed
Build and Push Backend / docker (push) Failing after 6s

This commit is contained in:
irving
2025-10-26 15:08:37 -04:00
parent 38bc83d0f7
commit f7461abc83

View File

@@ -164,6 +164,7 @@ public class PlayOrderInfoServiceImpl extends ServiceImpl<PlayOrderInfoMapper, P
if ("2".equals(placeType) && StrUtil.isNotBlank(acceptBy)) {
PlayOrderInfoEntity latest = this.selectOrderInfoById(orderId);
earningsService.createFromOrder(latest);
wxCustomMpService.sendOrderFinishMessageAsync(latest);
}
}
@@ -205,6 +206,7 @@ public class PlayOrderInfoServiceImpl extends ServiceImpl<PlayOrderInfoMapper, P
if (request.isRewardOrder() && StrUtil.isNotBlank(request.getAcceptBy())) {
PlayOrderInfoEntity latest = this.selectOrderInfoById(entity.getId());
earningsService.createFromOrder(latest);
wxCustomMpService.sendOrderFinishMessageAsync(latest);
}
}