From d3faf7f7e8441fd2b922792dda78e74060425b26 Mon Sep 17 00:00:00 2001 From: Barbara Hui Date: Mon, 1 Jun 2026 14:47:52 -0700 Subject: [PATCH 1/2] Add new rikolti mapper type conversion for sfpl_tind --- library_collection/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/library_collection/models.py b/library_collection/models.py index 752218b..8648983 100644 --- a/library_collection/models.py +++ b/library_collection/models.py @@ -124,6 +124,7 @@ def save(self, *args, **kwargs): "sfpl_marc": None, "sierramadre_marc": "marc.sierra", "ucb_tind_marc": "marc.ucb_tind", + "sfpl_tind_marc": "marc.sfpl_tind", "ucsb_aleph_marc": "marc.ucsb_aleph", "pastperfect_xml": "pastperfect_xml.pastperfect_xml", "sanjose_pastperfect": "pastperfect_xml.san_jose", From c947b34f070980ef7d1746dc02724b01013faae7 Mon Sep 17 00:00:00 2001 From: Barbara Hui Date: Mon, 1 Jun 2026 14:56:18 -0700 Subject: [PATCH 2/2] Fix mapping --- library_collection/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library_collection/models.py b/library_collection/models.py index 8648983..016d0d6 100644 --- a/library_collection/models.py +++ b/library_collection/models.py @@ -121,10 +121,9 @@ def save(self, *args, **kwargs): "internet_archive": "internet_archive.internet_archive", "marc": "marc.marc", "csl_marc": "marc.csl", - "sfpl_marc": None, + "sfpl_marc": "marc.sfpl_tind", "sierramadre_marc": "marc.sierra", "ucb_tind_marc": "marc.ucb_tind", - "sfpl_tind_marc": "marc.sfpl_tind", "ucsb_aleph_marc": "marc.ucsb_aleph", "pastperfect_xml": "pastperfect_xml.pastperfect_xml", "sanjose_pastperfect": "pastperfect_xml.san_jose",