Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Jira Legacy
serverSystem Jira
serverId01505d01-b853-3c2e-90f1-ee9b165564fc
keyMODSOURMAN-827

...

  • Existing mapping for 590 (Local note) updated so that 1st indicator = 0 triggers "Staff only" indication. Any other 1st indicator does not.

Steps:

  1. Send GET request to /mapping-rules/marc-bib to retrieve the mapping rules
  2. Under field “590” search for "target": "notes.staffOnly”. Replace the whole section for

Code Block
{
   "target":"notes.staffOnly",
   "description":"If the 1st indicator equals 0, determines that the note should not be visible for others than staff",
   "subfield":[
      "a"
   ],
   "rules":[
      {
         "conditions":[
            {
               "type":"set_note_staff_only_via_indicator"
            }
         ]
      }
   ]
}

...