Mercurial > hg > orthanc-tests
view Database/Lua/AutoroutingConditional.lua @ 770:2c169065aab7 default tip
tools/find: fix query by ModalitiesInStudy with pagination
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Wed, 08 Jan 2025 15:19:04 +0100 |
parents | 525a2f57ec94 |
children |
line wrap: on
line source
function OnStoredInstance(instanceId, tags, metadata, origin) -- The "origin" is only available since Orthanc 0.9.4 PrintRecursive(origin) -- Extract the value of the "PatientName" DICOM tag local patientName = string.lower(tags['PatientName']) if string.find(patientName, 'knee') ~= nil then -- Only send patients whose name contains "Knee" Delete(SendToModality(instanceId, 'orthanctest')) else -- Delete the patients that are not called "Knee" Delete(instanceId) end end