add studylist default date filter to avoid too much dicom query

This commit is contained in:
mario
2025-03-12 08:53:39 +07:00
parent 1abdeca9de
commit 3bc54d7775

View File

@@ -49,9 +49,6 @@ module.exports = function (server: FastifyInstance, opts: unknown, done: () => v
query.StudyDate = `${startDate}-${endDate}`;
}
logger.info(`Query: ${JSON.stringify(query)} \n`);
logger.info(`URL: ${req.url} \n`);
const json = deepmerge.all(await doFind(QUERY_LEVEL.STUDY, query), options);
return reply.send(json);
} catch (error) {