Mercurial > hg > orthanc-tests
view Database/Lua/AutoroutingConditional.lua @ 787:d753dc94de2c
support of 1.2.840.10008.1.2.1.99 in now enabled in the mainline
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Mon, 24 Feb 2025 08:03:48 +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
