|
|
@@ -198,7 +198,11 @@ public class InvitationRecordServiceImpl implements InvitationRecordService {
|
|
|
|
|
|
@Override
|
|
|
public SPage<InvitationRecord> getRecords(PageParams params, String keyword) {
|
|
|
- SPage<InvitationRecord> invitatrecords = searchService.getInvitationByKeyword(keyword, params);
|
|
|
+ SPage<InvitationRecord> invitatrecords = new SPage<InvitationRecord>();
|
|
|
+ try {
|
|
|
+ invitatrecords = searchService.getInvitationByKeyword(keyword, params);
|
|
|
+ } catch (Exception e) {
|
|
|
+ }
|
|
|
List<InvitationRecord> records = invitatrecords.getContent();
|
|
|
if (!CollectionUtils.isEmpty(records)) {
|
|
|
for (InvitationRecord record : records) {
|