view Resources/Samples/Lua/AutoroutingModification.lua @ 1045:0bfeeb6d340f

json to xml conversion with pugixml
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 18 Jul 2014 16:41:10 +0200
parents 23590917e83e
children f796207e3df1
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'

      -- 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