Mercurial > hg > orthanc-tests
view Database/Lua/AutoroutingConditional.lua @ 238:50c694cd5bbf
adding custom sop class uid 1.2.840.10008.5.1.4.1.1.77.1.6
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 29 May 2019 17:49:02 +0200 |
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