Mercurial > hg > orthanc
view OrthancServer/Resources/Samples/Lua/IncomingFindRequestFilter.lua @ 6945:7f50469de86e default
doc: clarify Timeout argument in DICOM jobs
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Thu, 11 Jun 2026 10:47:07 +0200 |
| parents | d25f4c0fa160 |
| children |
line wrap: on
line source
-- This example solves the following problem: -- https://groups.google.com/d/msg/orthanc-users/PLWKqVVaXLs/n_0x4vKhAgAJ function IncomingFindRequestFilter(source, origin) -- First display the content of the C-Find query PrintRecursive(source) PrintRecursive(origin) -- Remove the "PrivateCreator" tag from the query local v = source v['5555,0010'] = nil return v end
