Update to the default MARC Bib-to-Inventory Instance MAP:
- todo
Script for updating such mapping: Jira Legacy server System Jira columnIds issuekey,summary,issuetype,created,updated,duedate,assignee,reporter,priority,status,resolution columns key,summary,type,created,updated,due,assignee,reporter,priority,status,resolution serverId 01505d01-b853-3c2e-90f1-ee9b165564fc key MODDICORE-355
Steps:
- If library tenant is using default mapping rules with NO changes (no customizations), then call PUT /mapping-rules/marc-bib/restore endpoint
- If library tenant is using default mapping rules, WITH changes (local customization), then follow the next step
- Send a GET request to /mapping-rules/marc-bib to retrieve the mapping rules
Under 100, 110, 111, 700, 710, 711, 720 fields update rule for contributor name (section where target = "contributors.name") for the "type" property replace
"trim_period, trim"
value with"trim_punctuation"
value
before changes:Code Block language js collapse true "rules": [ { "conditions": [ { "type": "trim_period, trim" } ] } ]
after changes:Code Block linenumbers true collapse true "rules": [ { "conditions": [ { "type": "trim_punctuation" } ] } ]
- Send PUT request to /mapping-rules/marc-bib and put in the body the updated JSON
...