YARA-1069

This commit is contained in:
SepehrYahyaee
2026-07-12 11:44:32 +03:30
parent 9b83db882b
commit c955deda5c
4 changed files with 40 additions and 1 deletions

View File

@@ -1334,6 +1334,12 @@ export class ExpertInsurerService {
(f) => f.unifiedFileStatus === query.unifiedStatus,
);
}
const { fromDate, toDate } = parseListDateRange(query.startDate, query.endDate);
if (fromDate || toDate) {
files = files.filter((f) =>
isInListDateRange(f.createdAt, fromDate, toDate),
);
}
const paged = applyListQueryV2(
files,