view Database/Lua/AutoroutingConditional.lua @ 520:a06d0a45c62f

Python 3 compatibility of GenerateConfigurationForTests.py
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 Apr 2023 10:48:04 +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