Mercurial > hg > orthanc-tests
view Database/Lua/AutoroutingModification.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 | 04fa104ab63b |
children |
line wrap: on
line source
function OnStoredInstance(instanceId, tags, metadata) -- Ignore the instances that result from a modification to avoid -- infinite loops if (metadata['ModifiedFrom'] == nil and metadata['AnonymizedFrom'] == nil) then -- The tags to be replaced local replace = {} replace['StationName'] = 'My Medical Device' replace['0031-1020'] = 'Some private tag' -- The tags to be removed local remove = { 'MilitaryRank' } -- Modify the instance, send it, then delete the modified instance Delete(SendToModality(ModifyInstance(instanceId, replace, remove, true), 'orthanctest')) -- Delete the original instance Delete(instanceId) end end