Mercurial > hg > orthanc
view Resources/Samples/Lua/AutoroutingModification.lua @ 1327:6ed49334d5c1
removal of timestamps in Doxgen documentation for build reproducibility
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 16 Feb 2015 12:05:20 +0100 |
parents | f796207e3df1 |
children | bfdf24883ff3 |
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), 'sample')) -- Delete the original instance Delete(instanceId) end end