diff options
| -rw-r--r-- | Makefile.example | 3 | ||||
| -rw-r--r-- | archaeological_context_records/models.py | 20 | ||||
| -rw-r--r-- | archaeological_context_records/tests.py | 64 | ||||
| -rw-r--r-- | archaeological_files/tests.py | 23 | ||||
| -rw-r--r-- | archaeological_finds/fixtures/initial_data-fr.json | 15 | ||||
| -rw-r--r-- | archaeological_finds/models_finds.py | 6 | ||||
| -rw-r--r-- | archaeological_finds/tests.py | 106 | ||||
| -rw-r--r-- | archaeological_operations/fixtures/initial_data-fr.json | 50 | ||||
| -rw-r--r-- | archaeological_operations/tests.py | 87 | ||||
| -rw-r--r-- | archaeological_warehouse/tests.py | 21 | ||||
| -rwxr-xr-x | example_project/media/upload/templates/ISHTAR_FILE_ACT_AR_Neutre_1.odt | bin | 0 -> 49419 bytes | |||
| -rwxr-xr-x | example_project/media/upload/templates/document_reference.odt | bin | 0 -> 10678 bytes | |||
| -rw-r--r-- | ishtar_common/data_importer.py | 6 | ||||
| -rw-r--r-- | ishtar_common/fixtures/initial_data-fr.json | 143 | ||||
| -rw-r--r-- | ishtar_common/fixtures/initial_importtypes-fr.json | 12900 | ||||
| -rw-r--r-- | ishtar_common/fixtures/initial_spatialrefsystem-fr.json | 1068 | ||||
| -rw-r--r-- | ishtar_common/tests.py | 26 | ||||
| -rw-r--r-- | ishtar_common/wizards.py | 4 | 
18 files changed, 7489 insertions, 7053 deletions
diff --git a/Makefile.example b/Makefile.example index 4e3d06173..6351c397d 100644 --- a/Makefile.example +++ b/Makefile.example @@ -111,7 +111,7 @@ makemessages:  	for DIR in $(apps); do \  		cd $(CURDIR)/$$DIR; \  		$(PYTHON) ../$(project)/manage.py makemessages --all; \ -		msgfilter -i locale/fr/LC_MESSAGES/django.po -o locale/django.pot true; \ +		msgfilter -i locale/fr/LC_MESSAGES/django.po sed -e d | sed -e "s/fuzzy//g" > locale/django.pot ;\  	done  compilemessages: @@ -159,6 +159,7 @@ fixtures_common: fixtures_common_importers fixtures_spatialrefsystem  							ishtar_common.titletype \  							ishtar_common.supporttype \  							ishtar_common.format \ +							ishtar_common.documenttemplate \  	   > '../ishtar_common/fixtures/initial_data-'$(default_data)'.json'  fixtures_common_importers: diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 483d77883..6ebdb8033 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -76,6 +76,20 @@ class Dating(models.Model):              return unicode(self.period)          return u"%s (%s-%s)" % (self.period, start_date, end_date) +    @classmethod +    def fix_dating_association(cls, obj): +        """ +        Fix redundant m2m dating association (usually after imports) +        """ +        current_datings = [] +        for dating in obj.datings.order_by('pk').all(): +            key = (dating.period.pk, dating.start_date, dating.end_date, +                   dating.dating_type, dating.quality, dating.precise_dating) +            if key not in current_datings: +                current_datings.append(key) +                continue +            dating.delete() +  class Unit(GeneralType):      order = models.IntegerField(_(u"Order")) @@ -496,6 +510,12 @@ class ContextRecord(BulkUpdatedItem, BaseHistorizedItem, ImageModel, OwnPerms,              self.save()          return returned +    def fix(self): +        """ +        Fix redundant m2m dating association (usually after imports) +        """ +        Dating.fix_dating_association(self) +  post_save.connect(cached_label_changed, sender=ContextRecord) diff --git a/archaeological_context_records/tests.py b/archaeological_context_records/tests.py index 60fbaa65e..0de30ef31 100644 --- a/archaeological_context_records/tests.py +++ b/archaeological_context_records/tests.py @@ -29,7 +29,7 @@ from django.test.client import Client  from ishtar_common.models import IshtarSiteProfile, ImporterModel  from archaeological_operations.tests import OperationInitTest, \ -    ImportTest, ImportOperationTest +    ImportTest, FILE_TOWNS_FIXTURES, FILE_FIXTURES, OPERATION_TOWNS_FIXTURES  from archaeological_operations import models as models_ope  from archaeological_context_records import models @@ -38,12 +38,19 @@ from ishtar_common.tests import WizardTest, WizardTestFormData as FormData, \  from archaeological_context_records import views -class ImportContextRecordTest(ImportTest, TestCase): +CONTEXT_RECORD_FIXTURES = FILE_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_context_records/fixtures/initial_data-fr.json', +] -    fixtures = ImportOperationTest.fixtures + [ -        settings.ROOT_PATH + -        '../archaeological_context_records/fixtures/initial_data-fr.json', -    ] +CONTEXT_RECORD_TOWNS_FIXTURES = FILE_TOWNS_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_context_records/fixtures/initial_data-fr.json', +] + + +class ImportContextRecordTest(ImportTest, TestCase): +    fixtures = CONTEXT_RECORD_TOWNS_FIXTURES      def test_mcc_import_contextrecords(self):          old_nb = models.ContextRecord.objects.count() @@ -193,7 +200,7 @@ class ContextRecordInit(OperationInitTest):  class ExportTest(ContextRecordInit, TestCase): -    fixtures = ImportContextRecordTest.fixtures +    fixtures = CONTEXT_RECORD_TOWNS_FIXTURES      def setUp(self):          self.username, self.password, self.user = create_superuser() @@ -222,7 +229,7 @@ class ExportTest(ContextRecordInit, TestCase):  class ContextRecordTest(ContextRecordInit, TestCase): -    fixtures = ImportContextRecordTest.fixtures +    fixtures = CONTEXT_RECORD_TOWNS_FIXTURES      def setUp(self):          IshtarSiteProfile.objects.create() @@ -352,9 +359,24 @@ class ContextRecordTest(ContextRecordInit, TestCase):          self.assertEqual(response.status_code, 200)          self.assertIn('class="sheet"', response.content) +    def test_redundant_dating_clean(self): +        obj = self.context_records[0] +        values = {'period': models.Period.objects.all()[0]} +        values_2 = {'period': models.Period.objects.all()[0], +                    'quality': models.DatingQuality.objects.all()[0]} + +        obj.datings.add(models.Dating.objects.create(**values)) +        obj.datings.add(models.Dating.objects.create(**values)) +        obj.datings.add(models.Dating.objects.create(**values_2)) +        obj.datings.add(models.Dating.objects.create(**values_2)) +        self.assertEqual(obj.datings.count(), 4) +        obj.fix() +        self.assertEqual(obj.datings.count(), 2) + +  class ContextRecordSearchTest(ContextRecordInit, TestCase): -    fixtures = ImportContextRecordTest.fixtures +    fixtures = CONTEXT_RECORD_TOWNS_FIXTURES      def setUp(self):          IshtarSiteProfile.objects.create() @@ -496,7 +518,7 @@ class ContextRecordSearchTest(ContextRecordInit, TestCase):  class RecordRelationsTest(ContextRecordInit, TestCase): -    fixtures = ImportOperationTest.fixtures +    fixtures = OPERATION_TOWNS_FIXTURES      model = models.ContextRecord      def setUp(self): @@ -546,7 +568,7 @@ class RecordRelationsTest(ContextRecordInit, TestCase):  class ContextRecordWizardCreationTest(WizardTest, ContextRecordInit, TestCase): -    fixtures = ImportOperationTest.fixtures +    fixtures = OPERATION_TOWNS_FIXTURES      url_name = 'record_creation'      wizard_name = 'record_wizard'      steps = views.record_creation_steps @@ -558,22 +580,23 @@ class ContextRecordWizardCreationTest(WizardTest, ContextRecordInit, TestCase):                  'general': {                      'label': "First"                  }, -                'relations': [] +                'relations': [],              },              ignored=('datings',                       'interpretation',                       )          ),          FormData( -            "Create a context record with a relation", +            "Create a context record with a relation and datings",              form_datas={                  'selec': {},                  'general': {                      'label': "Second"                  }, -                'relations': [] +                'relations': [], +                'datings': []              }, -            ignored=('datings', 'interpretation',) +            ignored=('interpretation',)          ),      ] @@ -598,6 +621,14 @@ class ContextRecordWizardCreationTest(WizardTest, ContextRecordInit, TestCase):                   label="Test", symmetrical=False).pk}          ) +        period = models.Period.objects.all()[0].pk +        self.form_datas[1].append( +            'datings', {'period': period} +        ) +        self.form_datas[1].append( +            'datings', {'period': period} +        ) +          self.cr_nb = models.ContextRecord.objects.count()          super(ContextRecordWizardCreationTest, self).pre_wizard() @@ -606,3 +637,6 @@ class ContextRecordWizardCreationTest(WizardTest, ContextRecordInit, TestCase):                           self.cr_nb + 2)          self.assertEqual(self.related_cr.left_relations.count(),                           1) +        # identical datings, only one should be finaly save +        cr = models.ContextRecord.objects.order_by('-pk')[0] +        self.assertEqual(cr.datings.count(), 1) diff --git a/archaeological_files/tests.py b/archaeological_files/tests.py index a43068e6f..60f447c62 100644 --- a/archaeological_files/tests.py +++ b/archaeological_files/tests.py @@ -25,13 +25,14 @@ from django.contrib.auth.models import User  from django.core.urlresolvers import reverse  from django.test.client import Client -from ishtar_common.tests import TestCase +from ishtar_common.tests import TestCase, COMMON_FIXTURES  from ishtar_common.models import Town, IshtarSiteProfile  from archaeological_files import models  from archaeological_operations.models import Parcel, ParcelOwner, ActType, \      AdministrativeAct -from archaeological_operations.tests import OperationInitTest, FileInit +from archaeological_operations.tests import OperationInitTest, FileInit, \ +    FILE_TOWNS_FIXTURES  def create_administrativact(user, fle): @@ -47,10 +48,7 @@ def create_administrativact(user, fle):  class FileTest(TestCase, FileInit): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json'] +    fixtures = COMMON_FIXTURES      model = models.File      def setUp(self): @@ -219,18 +217,7 @@ class FileTest(TestCase, FileInit):  class FileOperationTest(TestCase, OperationInitTest, FileInit):      model = models.File -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/test_towns.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_importtypes-fr.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = FILE_TOWNS_FIXTURES      def setUp(self):          self.create_file() diff --git a/archaeological_finds/fixtures/initial_data-fr.json b/archaeological_finds/fixtures/initial_data-fr.json index b8f233f88..c7f0699b1 100644 --- a/archaeological_finds/fixtures/initial_data-fr.json +++ b/archaeological_finds/fixtures/initial_data-fr.json @@ -857,6 +857,21 @@          }      },       { +        "pk": 20,  +        "model": "archaeological_finds.treatmenttype",  +        "fields": { +            "comment": "Remontage virtuel : on sait que les \u00e9l\u00e9ments remontent ensemble, mais il n'y a pas eu de remontage physique p\u00e9renne.",  +            "available": true,  +            "downstream_is_many": false,  +            "parent": null,  +            "virtual": true,  +            "label": "Remontage virtuel",  +            "upstream_is_many": true,  +            "order": 10,  +            "txt_idx": "virtual-reassembly" +        } +    },  +    {          "pk": 6,           "model": "archaeological_finds.treatmentstate",           "fields": { diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index c8e0ef8e2..738da19a4 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1101,6 +1101,12 @@ class Find(BulkUpdatedItem, ValueGetter, BaseHistorizedItem, ImageModel,                  #    base_find.material_index = \                  #        idx and idx['material_index__max'] + 1 or 1 +    def fix(self): +        """ +        Fix redundant m2m dating association (usually after imports) +        """ +        Dating.fix_dating_association(self) +  post_save.connect(cached_label_changed, sender=Find) diff --git a/archaeological_finds/tests.py b/archaeological_finds/tests.py index 75f580633..3f34ab495 100644 --- a/archaeological_finds/tests.py +++ b/archaeological_finds/tests.py @@ -38,8 +38,24 @@ from ishtar_common import forms_common  from ishtar_common.tests import WizardTest, WizardTestFormData as FormData, \      TestCase  from archaeological_operations.tests import ImportTest -from archaeological_context_records.tests import ImportContextRecordTest, \ -    ContextRecordInit +from archaeological_context_records.tests import ContextRecordInit, \ +    CONTEXT_RECORD_FIXTURES, CONTEXT_RECORD_TOWNS_FIXTURES + + +FIND_FIXTURES = CONTEXT_RECORD_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_finds/fixtures/initial_data-fr.json', +] + +FIND_TOWNS_FIXTURES = CONTEXT_RECORD_TOWNS_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_finds/fixtures/initial_data-fr.json', +] + +WAREHOUSE_FIXTURES = FIND_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_warehouse/fixtures/initial_data-fr.json', +]  class FindInit(ContextRecordInit): @@ -95,19 +111,7 @@ class FindInit(ContextRecordInit):  class FindWizardCreationTest(WizardTest, FindInit, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_finds/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_warehouse/fixtures/initial_data-fr.json', -                ] +    fixtures = WAREHOUSE_FIXTURES      url_name = 'find_creation'      wizard_name = 'find_wizard'      steps = views.find_creation_steps @@ -126,6 +130,11 @@ class FindWizardCreationTest(WizardTest, FindInit, TestCase):                          'period': None,                          'start_date': '0',                          'end_date': '200', +                    }, +                    { +                        'period': None, +                        'start_date': '0', +                        'end_date': '200',                      }                  ]              }, @@ -138,8 +147,11 @@ class FindWizardCreationTest(WizardTest, FindInit, TestCase):          self.form_datas[0].form_datas['selecrecord-find_creation']['pk'] = \              cr.pk +        period = Period.objects.all()[0].pk          self.form_datas[0].form_datas['dating-find_creation'][0]['period'] = \ -            Period.objects.all()[0].pk +            period +        self.form_datas[0].form_datas['dating-find_creation'][1]['period'] = \ +            period          self.find_number = models.Find.objects.count()          self.basefind_number = models.BaseFind.objects.count()          super(FindWizardCreationTest, self).pre_wizard() @@ -149,12 +161,13 @@ class FindWizardCreationTest(WizardTest, FindInit, TestCase):                           self.basefind_number + 1)          self.assertEqual(models.Find.objects.count(),                           self.find_number + 1) -        find = models.Find.objects.order_by("-pk")[0] -        self.assertEqual(find.datings.count(), 1) +        # identical datings, only one should be finaly save +        f = models.Find.objects.order_by("-pk").all()[0] +        self.assertEqual(f.datings.count(), 1)  class FindWizardDeletionWithWarehouseModTest(WizardTest, FindInit, TestCase): -    fixtures = FindWizardCreationTest.fixtures +    fixtures = WAREHOUSE_FIXTURES      url_name = 'find_deletion'      wizard_name = 'find_deletion_wizard'      steps = views.find_deletion_steps @@ -185,19 +198,7 @@ class FindWizardDeletionWithWarehouseModTest(WizardTest, FindInit, TestCase):  class TreatmentWizardCreationTest(WizardTest, FindInit, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_finds/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_warehouse/fixtures/initial_data-fr.json', -                ] +    fixtures = WAREHOUSE_FIXTURES      url_name = 'treatment_creation'      wizard_name = 'treatment_wizard'      steps = views.treatment_wizard_steps @@ -255,10 +256,7 @@ class TreatmentWizardCreationTest(WizardTest, FindInit, TestCase):  class ImportFindTest(ImportTest, TestCase): -    fixtures = ImportContextRecordTest.fixtures + [ -        settings.ROOT_PATH + -        '../archaeological_finds/fixtures/initial_data-fr.json', -    ] +    fixtures = FIND_TOWNS_FIXTURES      def test_mcc_import_finds(self):          self.init_context_record() @@ -312,17 +310,7 @@ class ImportFindTest(ImportTest, TestCase):  class FindTest(FindInit, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_finds/fixtures/initial_data-fr.json', -                ] +    fixtures = FIND_FIXTURES      model = models.Find      def setUp(self): @@ -429,17 +417,7 @@ class FindTest(FindInit, TestCase):  class FindSearchTest(FindInit, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_finds/fixtures/initial_data-fr.json', -                ] +    fixtures = FIND_FIXTURES      model = models.Find      def setUp(self): @@ -569,17 +547,7 @@ class FindSearchTest(FindInit, TestCase):  class PackagingTest(FindInit, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_finds/fixtures/initial_data-fr.json', -                ] +    fixtures = FIND_FIXTURES      model = models.Find      def setUp(self): diff --git a/archaeological_operations/fixtures/initial_data-fr.json b/archaeological_operations/fixtures/initial_data-fr.json index 304f07a38..214ab9cad 100644 --- a/archaeological_operations/fixtures/initial_data-fr.json +++ b/archaeological_operations/fixtures/initial_data-fr.json @@ -9,7 +9,9 @@              "intented_to": "F",               "label": "AR : Accus\u00e9 de r\u00e9ception dossier",               "indexed": false,  -            "associated_template": [],  +            "associated_template": [ +                2 +            ],               "txt_idx": "a_receipt"          }      },  @@ -317,7 +319,9 @@              "intented_to": "T",               "label": "Constat d'\u00e9tat",               "indexed": false,  -            "associated_template": [],  +            "associated_template": [ +                1 +            ],               "txt_idx": "observation_status"          }      },  @@ -728,6 +732,20 @@          }      },       { +        "pk": 40,  +        "model": "archaeological_operations.period",  +        "fields": { +            "comment": "",  +            "available": true,  +            "parent": 39,  +            "end_date": 0,  +            "order": 1,  +            "label": "Antiquit\u00e9 tardive (M\u00e9d.)",  +            "start_date": 0,  +            "txt_idx": "late_antiq_med" +        } +    },  +    {          "pk": 39,           "model": "archaeological_operations.period",           "fields": { @@ -770,20 +788,6 @@          }      },       { -        "pk": 40,  -        "model": "archaeological_operations.period",  -        "fields": { -            "comment": "",  -            "available": true,  -            "parent": 39,  -            "end_date": 0,  -            "order": 1,  -            "label": "Antiquit\u00e9 tardive (M\u00e9d.)",  -            "start_date": 0,  -            "txt_idx": "late_antiq_med" -        } -    },  -    {          "pk": 41,           "model": "archaeological_operations.period",           "fields": { @@ -1970,22 +1974,22 @@          }      },       { -        "pk": 221,  +        "pk": 2,           "model": "archaeological_operations.remaintype",           "fields": { -            "comment": null,  +            "comment": "",               "available": true,  -            "txt_idx": "enclos",  +            "txt_idx": "enclosure",               "label": "enclos"          }      },       { -        "pk": 2,  +        "pk": 221,           "model": "archaeological_operations.remaintype",           "fields": { -            "comment": "",  +            "comment": null,               "available": true,  -            "txt_idx": "enclosure",  +            "txt_idx": "enclos",               "label": "enclos"          }      },  @@ -3018,4 +3022,4 @@              "label": "Rapport inexistant"          }      } -] +]
\ No newline at end of file diff --git a/archaeological_operations/tests.py b/archaeological_operations/tests.py index 8ca14179f..1c63de93b 100644 --- a/archaeological_operations/tests.py +++ b/archaeological_operations/tests.py @@ -42,7 +42,19 @@ from archaeological_context_records.models import Unit  from ishtar_common import forms_common  from ishtar_common.tests import WizardTest, WizardTestFormData as FormData, \ -    create_superuser, create_user, TestCase +    create_superuser, create_user, TestCase, OPERATION_FIXTURES + +OPERATION_TOWNS_FIXTURES = \ +    OPERATION_FIXTURES + \ +    [settings.ROOT_PATH + '../ishtar_common/fixtures/test_towns.json'] + +FILE_FIXTURES = OPERATION_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_files/fixtures/initial_data.json'] + +FILE_TOWNS_FIXTURES = OPERATION_TOWNS_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_files/fixtures/initial_data.json']  class FileInit(object): @@ -194,16 +206,7 @@ class ImportTest(object):  class ImportOperationTest(ImportTest, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/test_towns.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_importtypes-fr.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = OPERATION_TOWNS_FIXTURES      def test_mcc_import_operation(self):          first_ope_nb = models.Operation.objects.count() @@ -378,16 +381,7 @@ class ImportOperationTest(ImportTest, TestCase):  class ParcelTest(ImportTest, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/test_towns.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_importtypes-fr.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = OPERATION_TOWNS_FIXTURES      def test_parse_parcels(self):          # the database needs to be initialised before importing @@ -732,14 +726,7 @@ class OperationInitTest(object):  class OperationTest(TestCase, OperationInitTest): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = FILE_FIXTURES      def setUp(self):          IshtarSiteProfile.objects.get_or_create( @@ -947,14 +934,7 @@ class OperationTest(TestCase, OperationInitTest):  class OperationSearchTest(TestCase, OperationInitTest): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = FILE_FIXTURES      def setUp(self):          IshtarSiteProfile.objects.get_or_create( @@ -1068,12 +1048,7 @@ def create_administrativact(user, operation):  class RegisterTest(TestCase, OperationInitTest): -    fixtures = [settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = FILE_FIXTURES      def setUp(self):          self.username, self.password, self.user = create_superuser() @@ -1158,14 +1133,7 @@ class RegisterTest(TestCase, OperationInitTest):  class OperationWizardCreationTest(WizardTest, OperationInitTest, TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = FILE_FIXTURES      url_name = 'operation_creation'      wizard_name = 'operation_wizard'      steps = views.wizard_steps @@ -1261,7 +1229,7 @@ class OperationWizardCreationTest(WizardTest, OperationInitTest, TestCase):  class OperationWizardModifTest(WizardTest, OperationInitTest, TestCase): -    fixtures = OperationWizardCreationTest.fixtures +    fixtures = FILE_FIXTURES      url_name = 'operation_modification'      wizard_name = url_name + '_wizard'      steps = views.operation_modif_wizard_steps @@ -1413,7 +1381,7 @@ class OperationWizardModifTest(WizardTest, OperationInitTest, TestCase):  class OperationWizardDeleteTest(OperationWizardCreationTest): -    fixtures = OperationWizardCreationTest.fixtures +    fixtures = FILE_FIXTURES      url_name = 'operation_deletion'      wizard_name = 'operation_deletion_wizard'      steps = views.operation_deletion_steps @@ -1448,7 +1416,7 @@ class OperationWizardDeleteTest(OperationWizardCreationTest):  class OperationWizardClosingTest(OperationWizardCreationTest): -    fixtures = OperationWizardCreationTest.fixtures +    fixtures = FILE_FIXTURES      url_name = 'operation_closing'      wizard_name = 'operation_closing_wizard'      steps = views.operation_closing_steps @@ -1480,14 +1448,7 @@ class OperationWizardClosingTest(OperationWizardCreationTest):  class OperationAdminActWizardCreationTest(WizardTest, OperationInitTest,                                            TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = FILE_FIXTURES      url_name = 'operation_administrativeactop'      wizard_name = 'operation_administrative_act_wizard'      steps = views.administrativeactop_steps @@ -1522,7 +1483,7 @@ class OperationAdminActWizardCreationTest(WizardTest, OperationInitTest,  class OperationSourceWizardModificationTest(WizardTest, OperationInitTest,                                              TestCase): -    fixtures = OperationWizardCreationTest.fixtures +    fixtures = FILE_FIXTURES      url_name = 'operation_source_modification'      wizard_name = 'operation_source_wizard'      steps = views.operation_source_modification_steps diff --git a/archaeological_warehouse/tests.py b/archaeological_warehouse/tests.py index 10b2318b2..cf3c1febc 100644 --- a/archaeological_warehouse/tests.py +++ b/archaeological_warehouse/tests.py @@ -23,26 +23,13 @@ from archaeological_finds.tests import FindInit  from ishtar_common.tests import WizardTest, WizardTestFormData as FormData, \      TestCase +from archaeological_finds.tests import WAREHOUSE_FIXTURES  from archaeological_warehouse import models, views, forms -warehouse_fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_files/fixtures/initial_data.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_finds/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../archaeological_warehouse/fixtures/initial_data-fr.json', -                ] -  class WarehouseWizardCreationTest(WizardTest, FindInit, TestCase): -    fixtures = warehouse_fixtures +    fixtures = WAREHOUSE_FIXTURES      url_name = 'warehouse_creation'      wizard_name = 'warehouse_wizard'      steps = views.warehouse_creation_steps @@ -103,7 +90,7 @@ class WarehouseWizardCreationTest(WizardTest, FindInit, TestCase):  class ContainerWizardCreationTest(WizardTest, FindInit, TestCase): -    fixtures = warehouse_fixtures +    fixtures = WAREHOUSE_FIXTURES      url_name = 'container_creation'      wizard_name = 'container_wizard'      steps = views.container_creation_steps @@ -185,7 +172,7 @@ class ContainerWizardCreationTest(WizardTest, FindInit, TestCase):  class ContainerTest(FindInit, TestCase): -    fixtures = warehouse_fixtures +    fixtures = WAREHOUSE_FIXTURES      def testFormCreation(self):          main_warehouse = models.Warehouse.objects.create( diff --git a/example_project/media/upload/templates/ISHTAR_FILE_ACT_AR_Neutre_1.odt b/example_project/media/upload/templates/ISHTAR_FILE_ACT_AR_Neutre_1.odt Binary files differnew file mode 100755 index 000000000..2ed93861e --- /dev/null +++ b/example_project/media/upload/templates/ISHTAR_FILE_ACT_AR_Neutre_1.odt diff --git a/example_project/media/upload/templates/document_reference.odt b/example_project/media/upload/templates/document_reference.odt Binary files differnew file mode 100755 index 000000000..acda588fb --- /dev/null +++ b/example_project/media/upload/templates/document_reference.odt diff --git a/ishtar_common/data_importer.py b/ishtar_common/data_importer.py index 76b186038..4ac90f074 100644 --- a/ishtar_common/data_importer.py +++ b/ishtar_common/data_importer.py @@ -1415,8 +1415,7 @@ class Importer(object):                  if attribute != '__force_new':                      self.get_field(cls, attribute, data, m2ms, c_c_path,                                     new_created) -        except (ValueError, IntegrityError) as e: -            message = e.message +        except (ValueError, IntegrityError, FieldDoesNotExist) as e:              try:                  message = e.message.decode('utf-8')              except (UnicodeDecodeError, UnicodeDecodeError): @@ -1538,6 +1537,9 @@ class Importer(object):              if m2ms:                  # force post save script                  obj.save() +            if hasattr(obj, 'fix'): +                # post save/m2m specific fix +                obj.fix()          except IntegrityError as e:              message = e.message              try: diff --git a/ishtar_common/fixtures/initial_data-fr.json b/ishtar_common/fixtures/initial_data-fr.json index 6fc1b0526..52f89e0cc 100644 --- a/ishtar_common/fixtures/initial_data-fr.json +++ b/ishtar_common/fixtures/initial_data-fr.json @@ -336,7 +336,16 @@          "txt_idx": "head_scientist",          "groups": [              [ -                "Op\u00e9rations : lecture" +                "Organisations : lecture" +            ], +            [ +                "Personnes : lecture" +            ], +            [ +                "Actes administratifs rattach\u00e9s : lecture" +            ], +            [ +                "D\u00e9p\u00f4ts rattach\u00e9s : lecture"              ],              [                  "Documents op\u00e9ration rattach\u00e9s : ajout" @@ -348,6 +357,9 @@                  "Documents op\u00e9ration rattach\u00e9s : lecture"              ],              [ +                "Dossiers rattach\u00e9s : lecture" +            ], +            [                  "Mobilier rattach\u00e9 : ajout"              ],              [ @@ -360,7 +372,13 @@                  "Op\u00e9rations rattach\u00e9es : modification/suppression"              ],              [ -                "Organisations rattach\u00e9es : lecture" +                "Op\u00e9rations rattach\u00e9es : lecture" +            ], +            [ +                "Organisations rattach\u00e9es : ajout" +            ], +            [ +                "Traitements rattach\u00e9s : lecture"              ],              [                  "UE rattach\u00e9es : ajout" @@ -372,7 +390,10 @@                  "UE rattach\u00e9es : lecture"              ],              [ -                "Personnes rattach\u00e9es : lecture" +                "Personnes rattach\u00e9es : ajout" +            ], +            [ +                "Demandes de traitement rattach\u00e9es : lecture"              ],              [                  "Auteurs : ajout" @@ -400,6 +421,12 @@              ],              [                  "Documents mobilier rattach\u00e9s : modification/suppression" +            ], +            [ +                "Documents de traitement rattach\u00e9s : lecture" +            ], +            [ +                "Documents de demande de traitement rattach\u00e9s : lecture"              ]          ],          "label": "Responsable scientifique" @@ -555,9 +582,15 @@                  "UE : lecture"              ],              [ +                "D\u00e9p\u00f4ts : lecture" +            ], +            [                  "Mobilier : lecture"              ],              [ +                "Traitements : lecture" +            ], +            [                  "Actes administratifs : lecture"              ],              [ @@ -612,6 +645,9 @@                  "Personnes : lecture"              ],              [ +                "Demandes de traitement : lecture" +            ], +            [                  "Auteurs : ajout"              ],              [ @@ -625,6 +661,12 @@              ],              [                  "Documents mobilier : lecture" +            ], +            [ +                "Documents de traitement : lecture" +            ], +            [ +                "Documents de demande de traitement : lecture"              ]          ],          "label": "Secr\u00e9tariat" @@ -636,7 +678,7 @@      "fields": {          "comment": "Peut g\u00e9rer du mobilier qu'il n'a pas cr\u00e9\u00e9.\r\n\r\n",          "available": true, -        "txt_idx": "warehouse_manager", +        "txt_idx": "collection_manager",          "groups": [              [                  "Op\u00e9rations : lecture" @@ -735,7 +777,7 @@                  "Documents de demande de traitement : modification/suppression"              ]          ], -        "label": "Gestionnaire de d\u00e9p\u00f4t" +        "label": "R\u00e9gisseur de collection"      },      "model": "ishtar_common.persontype",      "pk": 5 @@ -758,52 +800,52 @@          "txt_idx": "reader_access",          "groups": [              [ -                "Op\u00e9rations : lecture" +                "Documents de demande de traitement : lecture"              ],              [ -                "Demandes de traitement : lecture" +                "Documents UE : lecture"              ],              [ -                "UE : lecture" +                "Actes administratifs : lecture"              ],              [ -                "D\u00e9p\u00f4ts : lecture" +                "Auteurs : lecture"              ],              [ -                "Mobilier : lecture" +                "Demandes de traitement : lecture"              ],              [ -                "Personnes : lecture" +                "D\u00e9p\u00f4ts : lecture"              ],              [ -                "Actes administratifs : lecture" +                "Documents op\u00e9ration : lecture"              ],              [ -                "Documents UE : lecture" +                "Dossiers : lecture"              ],              [ -                "Traitements : lecture" +                "Mobilier : lecture"              ],              [ -                "Dossiers : lecture" +                "Op\u00e9rations : lecture"              ],              [ -                "Documents mobilier : lecture" +                "Organisations : lecture"              ],              [ -                "Auteurs : lecture" +                "Personnes : lecture"              ],              [ -                "Documents de traitement : lecture" +                "Traitements : lecture"              ],              [ -                "Organisations : lecture" +                "UE : lecture"              ],              [ -                "Documents de demande de traitement : lecture" +                "Documents mobilier : lecture"              ],              [ -                "Documents op\u00e9ration : lecture" +                "Documents de traitement : lecture"              ]          ],          "label": "Acc\u00e8s en lecture" @@ -829,25 +871,22 @@          "txt_idx": "collaborator",          "groups": [              [ -                "Op\u00e9rations rattach\u00e9es : lecture" +                "Organisations : lecture"              ],              [ -                "Auteurs : ajout" +                "Personnes : lecture"              ],              [ -                "Auteurs : modification/suppression" +                "D\u00e9p\u00f4ts rattach\u00e9s : lecture"              ],              [ -                "Auteurs : lecture" +                "Documents op\u00e9ration rattach\u00e9s : ajout"              ],              [                  "Documents op\u00e9ration rattach\u00e9s : modification/suppression"              ],              [ -                "Documents UE rattach\u00e9s : lecture" -            ], -            [ -                "Documents UE rattach\u00e9s : modification/suppression" +                "Documents op\u00e9ration rattach\u00e9s : lecture"              ],              [                  "Mobilier rattach\u00e9 : ajout" @@ -859,37 +898,61 @@                  "Mobilier rattach\u00e9 : lecture"              ],              [ -                "Documents op\u00e9ration rattach\u00e9s : ajout" +                "Op\u00e9rations rattach\u00e9es : lecture"              ],              [ -                "Documents mobilier rattach\u00e9s : ajout" +                "Organisations rattach\u00e9es : ajout"              ],              [ -                "Documents mobilier rattach\u00e9s : lecture" +                "Traitements rattach\u00e9s : lecture"              ],              [ -                "Documents mobilier rattach\u00e9s : modification/suppression" +                "UE rattach\u00e9es : ajout"              ],              [ -                "Documents UE rattach\u00e9s : ajout" +                "UE rattach\u00e9es : modification/suppression"              ],              [ -                "Organisations rattach\u00e9es : lecture" +                "UE rattach\u00e9es : lecture"              ],              [ -                "UE rattach\u00e9es : ajout" +                "Personnes rattach\u00e9es : ajout"              ],              [ -                "UE rattach\u00e9es : modification/suppression" +                "Demandes de traitement rattach\u00e9es : lecture"              ],              [ -                "UE rattach\u00e9es : lecture" +                "Auteurs : ajout"              ],              [ -                "Documents op\u00e9ration rattach\u00e9s : lecture" +                "Auteurs : modification/suppression"              ],              [ -                "Personnes rattach\u00e9es : lecture" +                "Auteurs : lecture" +            ], +            [ +                "Documents UE rattach\u00e9s : lecture" +            ], +            [ +                "Documents UE rattach\u00e9s : modification/suppression" +            ], +            [ +                "Documents UE rattach\u00e9s : ajout" +            ], +            [ +                "Documents mobilier rattach\u00e9s : ajout" +            ], +            [ +                "Documents mobilier rattach\u00e9s : lecture" +            ], +            [ +                "Documents mobilier rattach\u00e9s : modification/suppression" +            ], +            [ +                "Documents de traitement rattach\u00e9s : lecture" +            ], +            [ +                "Documents de demande de traitement rattach\u00e9s : lecture"              ]          ],          "label": "Collaborateur scientifique" diff --git a/ishtar_common/fixtures/initial_importtypes-fr.json b/ishtar_common/fixtures/initial_importtypes-fr.json index 115f6a985..1b9fae709 100644 --- a/ishtar_common/fixtures/initial_importtypes-fr.json +++ b/ishtar_common/fixtures/initial_importtypes-fr.json @@ -1,6262 +1,6640 @@  [ -    { -        "pk": 17,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Auteur",  -            "klass": "ishtar_common.models.Author" -        } -    },  -    { -        "pk": 11,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Datation",  -            "klass": "archaeological_context_records.models.Dating" -        } -    },  -    { -        "pk": 16,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Documentation de demande de traitement",  -            "klass": "archaeological_finds.models_treatments.TreatmentFileSource" -        } -    },  -    { -        "pk": 15,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Documentation de traitement",  -            "klass": "archaeological_finds.models_treatments.TreatmentSource" -        } -    },  -    { -        "pk": 8,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Documentation d'op\u00e9ration",  -            "klass": "archaeological_operations.models.OperationSource" -        } -    },  -    { -        "pk": 13,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Documentation d'UE",  -            "klass": "archaeological_context_records.models.ContextRecordSource" -        } -    },  -    { -        "pk": 14,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Documentation mobilier",  -            "klass": "archaeological_finds.models_finds.FindSource" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Dossier arch\u00e9ologique",  -            "klass": "archaeological_files.models.File" -        } -    },  -    { -        "pk": 4,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Entit\u00e9 arch\u00e9ologique",  -            "klass": "archaeological_operations.models.ArchaeologicalSite" -        } -    },  -    { -        "pk": 12,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Find",  -            "klass": "archaeological_finds.models_finds.Find" -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Mobilier de base",  -            "klass": "archaeological_finds.models.BaseFind" -        } -    },  -    { -        "pk": 6,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Op\u00e9ration",  -            "klass": "archaeological_operations.models.Operation" -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Organisation",  -            "klass": "ishtar_common.models.Organization" -        } -    },  -    { -        "pk": 9,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Parcelle",  -            "klass": "archaeological_operations.models.Parcel" -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Personne",  -            "klass": "ishtar_common.models.Person" -        } -    },  -    { -        "pk": 10,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Relation entre Unit\u00e9s d'Enregistrement",  -            "klass": "archaeological_context_records.models.RecordRelations" -        } -    },  -    { -        "pk": 7,  -        "model": "ishtar_common.importermodel",  -        "fields": { -            "name": "Unit\u00e9 d'Enregistrement",  -            "klass": "archaeological_context_records.models.ContextRecord" -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "Mobilier",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "ishtar-finds",  -            "associated_models": 12,  -            "name": "Ishtar - Mobilier" -        } -    },  -    { -        "pk": 17,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "Import complet standard operations",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "code_patriarche",  -            "users": [],  -            "slug": "ishtar-operations",  -            "associated_models": 6,  -            "name": "Ishtar - Op\u00e9rations" -        } -    },  -    { -        "pk": 22,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "Documentation d'op\u00e9ration",  -            "created_models": [ -                17,  -                8,  -                5 -            ],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "ishtar-operations-sources",  -            "associated_models": 8,  -            "name": "Ishtar - Op\u00e9rations - Documentation" -        } -    },  -    { -        "pk": 19,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "Parcelles de terrain",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "ishtar-parcels",  -            "associated_models": 9,  -            "name": "Ishtar - Parcelles" -        } -    },  -    { -        "pk": 21,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "",  -            "created_models": [ -                10 -            ],  -            "is_template": true,  -            "unicity_keys": "",  -            "users": [],  -            "slug": "ishtar-ue-relations",  -            "associated_models": 10,  -            "name": "Ishtar - Relations entre UE" -        } -    },  -    { -        "pk": 18,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "Unit\u00e9s d'enregisttrement",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "ishtar-context-record",  -            "associated_models": 7,  -            "name": "Ishtar - UE" -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "",  -            "users": [],  -            "slug": "mcc-documentation",  -            "associated_models": 8,  -            "name": "MCC - Documentation" -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "mcc-mobilier",  -            "associated_models": 12,  -            "name": "MCC - Mobilier" -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "code_patriarche",  -            "users": [],  -            "slug": "mcc-operations",  -            "associated_models": 6,  -            "name": "MCC - Op\u00e9rations" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "mcc-parcelles",  -            "associated_models": 9,  -            "name": "MCC - Parcelles" -        } -    },  -    { -        "pk": 4,  -        "model": "ishtar_common.importertype",  -        "fields": { -            "description": "",  -            "created_models": [],  -            "is_template": true,  -            "unicity_keys": "external_id",  -            "users": [],  -            "slug": "mcc-ue",  -            "associated_models": 7,  -            "name": "MCC - UE" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.regexp",  -        "fields": { -            "regexp": "([0-9]*)",  -            "name": "Num\u00e9ro INSEE",  -            "description": "" -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.importerdefault",  -        "fields": { -            "importer_type": 3,  -            "target": "authors" -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importerdefault",  -        "fields": { -            "importer_type": 1,  -            "target": "operator" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.importerdefault",  -        "fields": { -            "importer_type": 3,  -            "target": "authors" -        } -    },  -    { -        "pk": 23,  -        "model": "ishtar_common.importerdefault",  -        "fields": { -            "importer_type": 17,  -            "target": "operator" -        } -    },  -    { -        "pk": 24,  -        "model": "ishtar_common.importerdefault",  -        "fields": { -            "importer_type": 17,  -            "target": "scientist__person_types" -        } -    },  -    { -        "pk": 25,  -        "model": "ishtar_common.importerdefault",  -        "fields": { -            "importer_type": 22,  -            "target": "authors" -        } -    },  -    { -        "pk": 26,  -        "model": "ishtar_common.importerdefaultvalues",  -        "fields": { -            "default_target": 20,  -            "target": "author_type",  -            "value": "main_author" -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importerdefaultvalues",  -        "fields": { -            "default_target": 1,  -            "target": "organization_type",  -            "value": "operator" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.importerdefaultvalues",  -        "fields": { -            "default_target": 2,  -            "target": "author_type",  -            "value": "main_author" -        } -    },  -    { -        "pk": 29,  -        "model": "ishtar_common.importerdefaultvalues",  -        "fields": { -            "default_target": 23,  -            "target": "organization_type",  -            "value": "operator" -        } -    },  -    { -        "pk": 30,  -        "model": "ishtar_common.importerdefaultvalues",  -        "fields": { -            "default_target": 24,  -            "target": "txt_idx",  -            "value": "head_scientist" -        } -    },  -    { -        "pk": 31,  -        "model": "ishtar_common.importerdefaultvalues",  -        "fields": { -            "default_target": 25,  -            "target": "author_type",  -            "value": "main_author" -        } -    },  -    { -        "pk": 336,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code op\u00e9ration",  -            "importer_type": 20,  -            "export_field_name": "base_finds__context_record__operation__code_patriarche" -        } -    },  -    { -        "pk": 337,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Commune (via num\u00e9ro INSEE).",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "INSEE",  -            "importer_type": 20,  -            "export_field_name": "base_finds__context_record__parcel__town__numero_insee" -        } -    },  -    { -        "pk": 338,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Parcelle (identifiant externe), soit la section plus la parcelle sans espaces. Exemple : \"ZA253\".",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Parcelle",  -            "importer_type": 20,  -            "export_field_name": "base_finds__context_record__parcel__section|base_finds__context_record__parcel__parcel_number" -        } -    },  -    { -        "pk": 339,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Label / Identifiant (externe) de l'UE. Exemple : \"US 145\", \"Tranch\u00e9e 145\", \"145\", \"St 17\", etc. Doit \u00eatre unique pour une parcelle donn\u00e9e.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Label UE",  -            "importer_type": 20,  -            "export_field_name": "base_finds__context_record__label" -        } -    },  -    { -        "pk": 340,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Identifiant libre pour le mobilier. Exemple : \"12\", \"Lot 24\", \"Sac vert\", etc.\r\nDoit \u00eatre unique \u00e0 l'\u00e9chelle de l'UE associ\u00e9e.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Label mobilier",  -            "importer_type": 20,  -            "export_field_name": "label" -        } -    },  -    { -        "pk": 341,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Identifiant pr\u00e9c\u00e9dent, li\u00e9 \u00e0 une base de donn\u00e9e ou un autre mode d'enregistrement. Exemple : \"400.01.05\", \"Beau biface\", \"inv. 4523\", \"Iso.4220\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Identifiant pr\u00e9c\u00e9dent",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 343,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "R\u00e9f\u00e9rence du point topo, d'ordinaire un entier mais peut \u00eatre autre chose. Champ texte, max. 120 caract\u00e8res. Exemple : \"7220\", \"pt. 72\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Ref. point topo",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 342,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Description du mobilier, objet ou lot. Exemple : \"Fibule aviforme\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 344,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "D\u00e9finit si on enregistre ici un objet seul (parfois appel\u00e9 Isolation) ou un lot d'objets. Exemple : \"lot\", \"objet\", \"Iso\", \"vrac\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Lot ou objet",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 345,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 10,  -            "description": "D\u00e9finit si un objet est complet ou non. Exemple : \"complet\", \"est complet\", \"incomplet\".\r\nEst ici traduit en binaire : \"complet\" (vrai) ou \"incomplet\" (faux). ",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Compl\u00e9tude",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 346,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 11,  -            "description": "Type(s) de mat\u00e9riau(x) s\u00e9par\u00e9s par des \"&\". Exemple : \"m\u00e9tal & os\", \"LT\", \"Min\u00e9ral\", \"Granito\u00efde & Basalte & Ardoise\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Mat\u00e9riau(x)",  -            "importer_type": 20,  -            "export_field_name": "material_types__label" -        } -    },  -    { -        "pk": 347,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "\u00c9tat de conservation. Exemple : \"Instable\", \"Stable\", \"Inconnu\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "\u00c9tat de conservation",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 348,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "Commentaire relatif \u00e0 la conservation. Exemple : \"Devrait \u00eatre conserv\u00e9 dans une chambre climatis\u00e9e\", \"Ne sera plus qu'une poudre, si on ne s'en occupe pas sous peu\", \" \u00e0 jeter\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire conservation",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 349,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 14,  -            "description": "Type(s) d'objet(s), s\u00e9par\u00e9s par des \"&\". Exemple : \"tesson & charbon\", \"os & m\u00e9tal\", \"faune\", \"fibule & bague\", \"lame & lamelle\", \"\u00e9clat & nucl\u00e9us\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type(s) d'objet(s)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 350,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 15,  -            "description": "Type(s) d'actions de conservation \u00e0 mener, s\u00e9par\u00e9s par des \"&\". Exemple : \"\u00c0 restaurer\", \"reconditionnement\", \"\u00c0 reconditionner & \u00e0 stabiliser\"",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type(s) d'actions de conservation \u00e0 mener",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 351,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 16,  -            "description": "Type(s) d'int\u00e9r\u00eat scientifique ou d'int\u00e9grit\u00e9, s\u00e9par\u00e9s par des \"&\". Exemple : \"Arch\u00e9ologiquement complet\", \"absent\", \"perdu\", etc.\r\nPeut \u00e9galement qualifier (selon votre usage) des qualit\u00e9s de fragmentation : \"proximal\", \"distal\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type(s) d'int\u00e9grit\u00e9(s) et/ou int\u00e9r\u00eat(s)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 352,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 17,  -            "description": "Type(s) de remarquabilit\u00e9(s), s\u00e9par\u00e9s par des \"&\". Exemple : \"Mus\u00e9e\", \"Publication\", \"Tessonier & Publication\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type(s) de remarqualibit\u00e9(s)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 353,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 18,  -            "description": "Longueur en cm (nombre d\u00e9cimal).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Longueur (cm)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 354,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 19,  -            "description": "Largeur en cm (nombre d\u00e9cimal).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Largeur (cm)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 355,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 20,  -            "description": "Hauteur en cm (nombre d\u00e9cimal).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Hauteur (cm)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 356,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 21,  -            "description": "Diam\u00e8tre en cm (nombre d\u00e9cimal).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Diam\u00e8tre (cm)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 357,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 22,  -            "description": "Commentaire permettant de donner des pr\u00e9cisions (ou d'importer des donn\u00e9es mixtes). Exemple : \"18 x 12 x 5\", \"col de 43 mm\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire / Pr\u00e9cisions sur les dimensions ",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 372,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 23,  -            "description": "Poids en grammes.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Poids (g)",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 358,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 24,  -            "description": "Nombre d'objet(s) li\u00e9(s) \u00e0 cet enregistrement (entier). Exemple : \"12\".\r\nAttention, ce champ n'est pas contraint par l'information de type OBJET/LOT (colonne n\u00b09).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nombre",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 359,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 25,  -            "description": "Marquage visible sur le mobilier. Exemple : \"id1234 la Roche aux F\u00e9es\", \"MTX-45\", etc.\r\nCeci reproduit d'ordinaire un marquage r\u00e9alis\u00e9 par un arch\u00e9ologue. Il ne s'agit pas ici de reproduire une \u00e9pigraphie ou tout autre inscription arch\u00e9ologique (graffito, d\u00e9dicaces, defixio, etc.) , mais vous pouvez l'utiliser pour cela si vous n'avez pas \u00e0 utiliser de marquage arch\u00e9ologique.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Marque",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 360,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 26,  -            "description": "Commentaire g\u00e9n\u00e9ral libre. Exemple : \"habillage en nid d'abeille, poli g\u00e9n\u00e9ralis\u00e9, encoche emmanchement lat\u00e9ral ouvert sur la face sup\u00e9rieure\", \"1 bord + bec tubulaire\", \"fibule de Langton Down\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire g\u00e9n\u00e9ral",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 361,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 27,  -            "description": "Commentaire g\u00e9n\u00e9ral sur les datations, si besoin. Exemple : \"plut\u00f4t fin IIe s. ou d\u00e9but IIIe s.\", \"Datation \u00e0 pr\u00e9ciser avant publication\", \" Datation rapide faite par M. Dupont\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire g\u00e9n\u00e9ral sur les datations",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 362,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 28,  -            "description": "Valeur estim\u00e9e (\u20ac), sous la forme d'un nombre d\u00e9cimal. Exemple : \"4500\", \"0.2\", etc.\r\nUtile essentiellement pour les probl\u00e8mes de partage, vente, assurance etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Valeur estim\u00e9e",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 363,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 29,  -            "description": "Nom exact du fichier image, sous la forme XXXXX.jpg.\r\nAttention au respect strict des caract\u00e8res et majuscules lors d'un import de ce type, \".JPG\" ou \"*.jpg\", etc.\r\nExemple : \"P1030831.JPG\", \"IMG_6485.JPG\", \"fibule.jpg\", etc.\r\nLors de l'import il faut ajouter ces images sous la forme d'un fichier zip (joint au csv import\u00e9) pour que les images soient automatiquement int\u00e9gr\u00e9es.\r\n",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Image",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 364,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 30,  -            "description": "Chronologies associ\u00e9es (plusieurs possibles s\u00e9par\u00e9es par &). Exemple : \"Gallo-romain & M\u00e9di\u00e9val\", \"GR&MED\", \"M\u00e9solithique final & M\u00e9so moyen & Epipal\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "P\u00e9riodes",  -            "importer_type": 20,  -            "export_field_name": "datings__period__label" -        } -    },  -    { -        "pk": 365,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 31,  -            "description": "Coordonn\u00e9e X pour cet objet.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Coordonn\u00e9e X",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 366,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 32,  -            "description": "Coordonn\u00e9e Y pour cet objet.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Coordonn\u00e9e Y",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 367,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 33,  -            "description": "Coordonn\u00e9e Z pour cet objet (altitude NGF ou arbitraire).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Coordonn\u00e9e Z",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 368,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 34,  -            "description": "Code permettant de qualifier le mode de projection des donn\u00e9es (SRS /EPSG). Exemple : \"2154\" pour le Lambert 93.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Syst\u00e8me de r\u00e9f\u00e9rence spatiale",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 373,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 35,  -            "description": "Identifiant textuel du d\u00e9p\u00f4t. Cet identifiant doit correspondre \u00e0 un d\u00e9p\u00f4t existant en base de donn\u00e9es.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Identifiant d\u00e9p\u00f4t",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 374,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 36,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "R\u00e9f\u00e9rence de caisse",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 375,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 37,  -            "description": "Champ n\u00e9cessaire si vous indiquez une caisse",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type de caisse",  -            "importer_type": 20,  -            "export_field_name": null -        } -    },  -    { -        "pk": 265,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code op\u00e9ration",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 266,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Nom usuel de l'op\u00e9ration.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Nom",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 267,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Ann\u00e9e de r\u00e9f\u00e9rence (peut \u00eatre celle o\u00f9 le projet d'op\u00e9ration a \u00e9t\u00e9 cr\u00e9\u00e9 ou bien celle de la r\u00e9alisation selon votre usage).",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Ann\u00e9e",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 268,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Index (num\u00e9ro par ann\u00e9e), le couple ann\u00e9e + index doit \u00eatre unique.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Index (num\u00e9ro par ann\u00e9e)",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 269,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Type d'op\u00e9ration (parmi une liste).",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Type d'op\u00e9ration",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 335,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Ancien code unique de l'op\u00e9ration, peut \u00eatre la r\u00e9f\u00e9rence unique d'une op\u00e9ration pass\u00e9e comme un code DRACAR par exemple, 200 carac. max.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Ancien code",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 270,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "R\u00e9f\u00e9rence du dossier administratif associ\u00e9 \u00e0 l'op\u00e9ration sous la forme ANNEE-INDEX. Exemple : \"2002-4\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "R\u00e9f\u00e9rence du dossier administratif",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 271,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Identifiants des sites (entit\u00e9s arch\u00e9ologiques) concern\u00e9es par l'op\u00e9ration, s\u00e9par\u00e9es par \u00ab\u00a0&\u00a0\u00bb. Exemple : \"44 125 0028 & 44 125 0029\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Identifiants des sites (EAs)",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 272,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "Types de vestiges (s\u00e9par\u00e9s par un \u00ab\u00a0&\u00a0\u00bb). Exemple : \"four & fosses & villa\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Types de vestiges",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 273,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 10,  -            "description": "P\u00e9riodes concern\u00e9es (s\u00e9par\u00e9es par un \u00ab\u00a0&\u00a0\u00bb). \r\nExemple : \"Gallo-romain & Fer & Med\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "P\u00e9riodes",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 274,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 11,  -            "description": "Titre (M., Mme, etc.) du responsable scientifique.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Titre du responsable scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 275,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "Pr\u00e9nom du responsable scientifique (responsable d'op\u00e9ration).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Pr\u00e9nom du responsable scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 276,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "Nom du responsable scientifique (responsable d'op\u00e9ration).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nom du responsable scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 277,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 14,  -            "description": "Rattachement du responsable scientifique (responsable d'op\u00e9ration). Exemple : \"INRAP\" ou plus pr\u00e9cis \"INRAP Direction interr\u00e9gionale Grand Ouest\" selon votre degr\u00e9 de pr\u00e9cision dans la gestion des rattachements et des organisations.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Rattachement du responsable scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 278,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 15,  -            "description": "Nom de l'op\u00e9rateur (organisation). Peut \u00eatre diff\u00e9rent de l'organisation de rattachement du responsable d'op\u00e9ration.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nom de l'op\u00e9rateur",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 279,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 16,  -            "description": "R\u00e9f\u00e9rence de l'op\u00e9rateur (code ou autre r\u00e9f\u00e9rence interne de l'op\u00e9rateur).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "R\u00e9f\u00e9rence de l'op\u00e9rateur",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 280,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 17,  -            "description": "Titre (M., Mme, etc.) du responsable du suivi scientifique.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Titre du responsable du suivi scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 281,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 18,  -            "description": "Pr\u00e9nom du responsable du suivi scientifique. Exemple\u00a0: resp. SRA ou pilote de l'op\u00e9ration, mais non responsable de celle-ci.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Pr\u00e9nom du responsable du suivi scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 282,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 19,  -            "description": "Nom du responsable du suivi scientifique. Exemple : resp. SRA ou pilote de l'op\u00e9ration, mais non responsable de celle-ci.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nom du responsable du suivi scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 283,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 20,  -            "description": "Rattachement du responsable du suivi scientifique.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Rattachement du responsable du suivi scientifique",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 284,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 21,  -            "description": "Surface couverte par l'op\u00e9ration (m2).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Surface couverte par l'op\u00e9ration",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 285,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 22,  -            "description": "Date de d\u00e9but de l'op\u00e9ration (habituellement d\u00e9but du terrain mais vous pouvez utiliser autre chose).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de d\u00e9but de l'op\u00e9ration",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 286,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 23,  -            "description": "Date de fin de l'op\u00e9ration (habituellement fin du terrain mais vous pouvez utiliser autre chose).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de fin de l'op\u00e9ration",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 287,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 24,  -            "description": "Date de cl\u00f4ture (peut \u00eatre la date de rendu de la documentation, la fin de la recherche associ\u00e9e ou autre). Habituellement cela repr\u00e9sente la date \u00e0 partir de laquelle la documentation issue de l'op\u00e9ration n'est plus du ressort du responsable d'op\u00e9ration, mais vous pouvez utiliser autre chose.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de cl\u00f4ture",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 288,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 25,  -            "description": "Date d'avis. Exemple\u00a0: avis de CIRA ou autre selon votre usage.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date d'avis",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 289,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 26,  -            "description": "R\u00e9sultats consid\u00e9r\u00e9s comme n\u00e9gatif (d\u2019ordinaire utilis\u00e9 pour les diagnostics n\u00e9gatifs).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "R\u00e9sultats consid\u00e9r\u00e9s comme n\u00e9gatif",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 290,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 27,  -            "description": "Pr\u00e9nom du rapporteur (CIRA ou autre selon votre usage de la notion d'avis).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Pr\u00e9nom du rapporteur",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 291,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 28,  -            "description": "Nom du rapporteur (CIRA ou autre selon votre usage de la notion d'avis).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nom du rapporteur",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 292,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 29,  -            "description": "Rattachement rapporteur (organisation).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Rattachement du rapporteur",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 293,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 30,  -            "description": "Date limite pr\u00e9vue pour le rendu de la documentation scientifique.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date limite pour le rendu de la documentation",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 294,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 31,  -            "description": "Documentation re\u00e7ue.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Documentation re\u00e7ue",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 295,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 32,  -            "description": "Date limite pr\u00e9vue pour le rendu du mobilier.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date limite rendu du mobilier",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 296,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 33,  -            "description": "Mobilier re\u00e7u ou livr\u00e9 selon vos usages et proc\u00e9dures.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Mobilier re\u00e7u",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 297,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 34,  -            "description": "Commentaire g\u00e9n\u00e9ral.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire g\u00e9n\u00e9ral",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 298,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 35,  -            "description": "Date de livraison du rapport.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de livraison du rapport",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 299,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 36,  -            "description": "\u00c9tat de traitement du rapport.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "\u00c9tat de traitement du rapport",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 300,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 37,  -            "description": "Commentaire sur la documentation scientifique (y compris mobilier).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire sur la documentation",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 301,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 38,  -            "description": "Nom du fichier image (jpg ou png. Exemple \"IMG_5023.jpg\". Les fichiers images doivent \u00eatre joints \u00e0 l'import dans un fichier ZIP.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Image",  -            "importer_type": 17,  -            "export_field_name": null -        } -    },  -    { -        "pk": 376,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code UNIQUE pour une op\u00e9ration (par exemple : code PATRIARCHE)",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code op\u00e9ration",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 379,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Num\u00e9ro unique par op\u00e9ration",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Index (num\u00e9ro par op\u00e9ration)",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 378,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Type de document",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 377,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Titre du document (max. 300 caract\u00e8res)",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Titre",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 380,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "R\u00e9f\u00e9rence libre (max. 100 caract\u00e8res)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "R\u00e9f\u00e9rence",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 381,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "R\u00e9f\u00e9rence interne libre (max. 100 caract\u00e8res)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "R\u00e9f\u00e9rence interne",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 382,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "Adresse web compl\u00e8te (avec la partie http:// ou https://)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Adresse web associ\u00e9e",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 383,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Date de r\u00e9ception (format JJ/MM/AAAA ou AAAA-MM-JJ)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de r\u00e9ception",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 384,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "Date de cr\u00e9ation (format JJ/MM/AAAA ou AAAA-MM-JJ)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de cr\u00e9ation",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 385,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 10,  -            "description": "Date de r\u00e9ception en documentation (format JJ/MM/AAAA ou AAAA-MM-JJ)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de r\u00e9ception en documentation",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 386,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 11,  -            "description": "Texte libre",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 387,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "Texte libre",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 388,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "Texte libre",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Information suppl\u00e9mentaire",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 390,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 14,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Existe en doublon",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 389,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 15,  -            "description": "Nom (en casse haute) suivi du pr\u00e9nom de l'auteur (maximum 300 caract\u00e8res). Exemple : DUPONT Jean.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Auteur principal",  -            "importer_type": 22,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 303,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code op\u00e9ration",  -            "importer_type": 19,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 304,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Commune (via num\u00e9ro INSEE).",  -            "regexp_pre_filter": 2,  -            "required": true,  -            "label": "Commune",  -            "importer_type": 19,  -            "export_field_name": null -        } -    },  -    { -        "pk": 305,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Identifiant externe.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "ID externe",  -            "importer_type": 19,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 306,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Section. Exemple : \"ZA\". Maximum 4 caract\u00e8res.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Section",  -            "importer_type": 19,  -            "export_field_name": null -        } -    },  -    { -        "pk": 307,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Num\u00e9ro de la parcelle. Exemple : \"253\". Peut accueillir une r\u00e9f\u00e9rence sous la forme de caract\u00e8res (maximum 6).",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Parcelle",  -            "importer_type": 19,  -            "export_field_name": null -        } -    },  -    { -        "pk": 308,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Ann\u00e9e de la r\u00e9f\u00e9rence cadastrale. Exemple : \"1980\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Ann\u00e9e cadastrale",  -            "importer_type": 19,  -            "export_field_name": null -        } -    },  -    { -        "pk": 309,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "Lieu-dit ou adresse associ\u00e9s \u00e0 la parcelle.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Adresse",  -            "importer_type": 19,  -            "export_field_name": null -        } -    },  -    { -        "pk": 310,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Parcelle dans le domaine public ou non (oui/non).",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Domaine public",  -            "importer_type": 19,  -            "export_field_name": null -        } -    },  -    { -        "pk": 369,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "UE (identifiant externe) - membre de gauche",  -            "importer_type": 21,  -            "export_field_name": null -        } -    },  -    { -        "pk": 370,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Type de relation entre UE",  -            "importer_type": 21,  -            "export_field_name": null -        } -    },  -    { -        "pk": 371,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "UE (identifiant externe) - membre de droite",  -            "importer_type": 21,  -            "export_field_name": null -        } -    },  -    { -        "pk": 302,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code PATRIARCHE ou code UNIQUE de l'op\u00e9ration associ\u00e9e.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code op\u00e9ration",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 311,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Commune (via num\u00e9ro INSEE).",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "INSEE",  -            "importer_type": 18,  -            "export_field_name": "parcel__town__numero_insee" -        } -    },  -    { -        "pk": 312,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Parcelle (identifiant externe), soit la section plus la parcelle sans espaces. Exemple : \"ZA253\".",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Parcelle",  -            "importer_type": 18,  -            "export_field_name": "parcel__section|parcel__parcel_number" -        } -    },  -    { -        "pk": 313,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Ann\u00e9e de la r\u00e9f\u00e9rence cadastrale. Exemple : \"1980\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Ann\u00e9e cadastre",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 314,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Identifiant (externe) de l'UE. Exemple : \"US 145\", \"Tranch\u00e9e 145\", \"145\", \"St 17\", etc. Doit \u00eatre unique pour une parcelle donn\u00e9e. Maximum 200 caract\u00e8res.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Identifiant UE",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 315,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Type d'UE. Exemple : \"US\", \"Couche\", \"Tranch\u00e9e\", \"zone\", \"Secteur\", \"Log\", \"Carr\u00e9\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 316,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "Description.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 317,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Commentaire g\u00e9n\u00e9ral.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire g\u00e9n\u00e9ral",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 318,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "Taille ou longueur (en m\u00e8tre). Exemple : \"1.2\", \"12\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Taille ou longueur",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 319,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 10,  -            "description": "Largeur (en m\u00e8tre). Exemple : \"1.2\", \"12\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Largeur",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 320,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 11,  -            "description": "\u00c9paisseur (en m\u00e8tre). Exemple : \"0.2\", \"2\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "\u00c9paisseur",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 321,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "Profondeur (en m\u00e8tre). Exemple : \"0.2\", \"2\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Profondeur",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 322,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "Lieu, description textuelle de la localisation. Exemple : \"Au pied de l'arbre du P\u00e8re Jahouen\", \"En limite nord de la parcelle\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Lieu, localisation",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 323,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 14,  -            "description": "Champ \u00e0 choix multiple (s\u00e9par\u00e9 par \u00ab & \u00bb) permettant de pr\u00e9ciser : contient du mobilier, dispose d'une photo, etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Documentations",  -            "importer_type": 18,  -            "export_field_name": "" -        } -    },  -    { -        "pk": 324,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 15,  -            "description": "Nom du fichier image (jpg ou png). Exemple : \"IMG_5023.jpg\". Les fichiers images doivent \u00eatre joints \u00e0 l'import dans un fichier ZIP.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Image",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 325,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 16,  -            "description": "Chronologies associ\u00e9es (plusieurs possibles s\u00e9par\u00e9es par &). Exemple : \"Gallo-romain & M\u00e9di\u00e9val\", \"GR&MED\", \"M\u00e9solithique final & M\u00e9so moyen & Epipal\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "P\u00e9riodes",  -            "importer_type": 18,  -            "export_field_name": "datings__period__label" -        } -    },  -    { -        "pk": 326,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 17,  -            "description": "Commentaire sur les datations. Exemple : \"IIe - IIIe s.\", \"fin XVe ou plus tard\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire sur les datations",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 327,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 18,  -            "description": "Description du remplissage. Exemple : \"Limons argileux brun riche en charbons\".",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description du remplissage",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 328,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 19,  -            "description": "Interpr\u00e9tation. Exemple : \"Mur de cl\u00f4ture\", \"Sol couvert d'une mosa\u00efque, \"Pal\u00e9osol du d\u00e9but de l'Holoc\u00e8ne\", \"Four de r\u00e9duction de minerai de fer\", \"TP\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Interpr\u00e9tation",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 329,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 20,  -            "description": "Activit\u00e9, r\u00e9f\u00e9rence \u00e0 des types. Exemple : \"Naturelle\", \"Construction\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type d'activit\u00e9",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 330,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 21,  -            "description": "Identification (type). Exemple : \"Niveau d'occupation\", \"Mur\", \"Colluvions\", \"Chablis\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Identification (type)",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 331,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 22,  -            "description": "Terminus ante quem, limite temporelle avant laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "TAQ",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 332,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 23,  -            "description": "Terminus post quem, limite temporelle apr\u00e8s laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "TPQ",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 333,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 24,  -            "description": "Terminus ante quem estim\u00e9, limite temporelle avant laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "TAQ estim\u00e9",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 334,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 25,  -            "description": "Terminus post quem estim\u00e9, limite temporelle avant laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "TPQ estim\u00e9",  -            "importer_type": 18,  -            "export_field_name": null -        } -    },  -    { -        "pk": 14,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code Patriarche de l'op\u00e9ration associ\u00e9e",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code Patriarche",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 15,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Identifiant externe",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 16,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Type de document",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 17,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type de support",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 18,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Num\u00e9ro",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 19,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nom de l'auteur",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de cr\u00e9ation",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 21,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type de format",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 22,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 23,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 24,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "\u00c9chelle",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 25,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 16,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Information suppl\u00e9mentaire",  -            "importer_type": 3,  -            "export_field_name": null -        } -    },  -    { -        "pk": 36,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code patriarche de l'op\u00e9ration associ\u00e9e",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code Patriarche",  -            "importer_type": 5,  -            "export_field_name": "base_finds__context_record__operation__code_patriarche" -        } -    },  -    { -        "pk": 227,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Commune (via num\u00e9ro INSEE)",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Commune",  -            "importer_type": 5,  -            "export_field_name": "base_finds__context_record__parcel__town__numero_insee" -        } -    },  -    { -        "pk": 226,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Identifiant parcelle",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Parcelle",  -            "importer_type": 5,  -            "export_field_name": "base_finds__context_record__parcel__section|base_finds__context_record__parcel__parcel_number" -        } -    },  -    { -        "pk": 43,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Identifiant UE",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "UE",  -            "importer_type": 5,  -            "export_field_name": "base_finds__context_record__label" -        } -    },  -    { -        "pk": 37,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Identifiant externe",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Identifiant externe",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 39,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "Sous classe de mat\u00e9riaux",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Mat\u00e9riau",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 229,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "Ref. du contenant / label temporaire utilis\u00e9 pour le mobilier = label libre = Label pour l'instant",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Libell\u00e9 contenant",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 40,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "Nombre d'\u00e9l\u00e9ments",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nombre d'\u00e9l\u00e9ments",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 41,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 14,  -            "description": "Poids",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Poids",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 42,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 15,  -            "description": "Unit\u00e9 de poids",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Unit\u00e9 de poids",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 44,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 16,  -            "description": "Date de d\u00e9couverte",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date de d\u00e9couverte",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 45,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 17,  -            "description": "\u00c9tat de conservation",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "\u00c9tat de conservation",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 46,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 18,  -            "description": "Mesure de conservation",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Mesure de conservation",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 47,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 19,  -            "description": "Commentaire",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 228,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 20,  -            "description": "Datations s\u00e9par\u00e9es par des \"&\"",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Datation",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 48,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 21,  -            "description": "Localisation topographique",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Localisation topographique",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 49,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 22,  -            "description": "Int\u00e9r\u00eat sp\u00e9cifique",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Int\u00e9r\u00eat sp\u00e9cifique",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 50,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 23,  -            "description": "Description",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description",  -            "importer_type": 5,  -            "export_field_name": null -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code Patriarche",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code Patriarche",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Type d'op\u00e9ration",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Nom de l'op\u00e9ration",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 4,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Nom de l'op\u00e9rateur",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Nom du responsable de l'op\u00e9ration. Nom et Pr\u00e9nom sont group\u00e9s et donc mis dans le NOM seul dans l'annuaire.",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Nom du responsable de l'op\u00e9ration",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 6,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "Date de d\u00e9but de l'op\u00e9ration avec le format ANN\u00c9E/MOIS/JOUR",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Date d\u00e9but",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 7,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Date de fin de l'op\u00e9ration avec le format ANN\u00c9E/MOIS/JOUR",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Date fin",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 8,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "P\u00e9riodes",  -            "importer_type": 1,  -            "export_field_name": null -        } -    },  -    { -        "pk": 9,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code Patriarche de l'op\u00e9ration associ\u00e9e",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code Patriarche",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 12,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Commune (via num\u00e9ro INSEE)",  -            "regexp_pre_filter": 2,  -            "required": true,  -            "label": "Commune",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 53,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Identifiant externe",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Identifiant externe",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 51,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Num\u00e9ro",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Parcelle",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 52,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Section",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Section cadastrale",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 11,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Ann\u00e9e",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Ann\u00e9e cadastrale",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 13,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "Lieu dit / adresse",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Adresse",  -            "importer_type": 2,  -            "export_field_name": null -        } -    },  -    { -        "pk": 26,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 1,  -            "description": "Code Patriarche de l'op\u00e9ration associ\u00e9e",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Code Patriarche",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 225,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 2,  -            "description": "Commune (via num\u00e9ro INSEE)",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Commune",  -            "importer_type": 4,  -            "export_field_name": "parcel__town__numero_insee" -        } -    },  -    { -        "pk": 33,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 3,  -            "description": "Parcelle (identifiant externe)",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Parcelle",  -            "importer_type": 4,  -            "export_field_name": "parcel__section|parcel__parcel_number" -        } -    },  -    { -        "pk": 27,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 4,  -            "description": "Identifiant externe ",  -            "regexp_pre_filter": null,  -            "required": true,  -            "label": "Identifiant externe",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 28,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 5,  -            "description": "Type",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Type",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 29,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 6,  -            "description": "Description",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Description",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 30,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 7,  -            "description": "Identification",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Identification",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 31,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 8,  -            "description": "Date d'ouverture",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date d\u00e9but",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 32,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 9,  -            "description": "Date de fermeture",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Date fin",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 34,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 11,  -            "description": "Commentaire",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Commentaire",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 54,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 12,  -            "description": "Nature",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Nature",  -            "importer_type": 4,  -            "export_field_name": null -        } -    },  -    { -        "pk": 35,  -        "model": "ishtar_common.importercolumn",  -        "fields": { -            "col_number": 13,  -            "description": "Chronologie (plusieurs possibles s\u00e9par\u00e9es par &)",  -            "regexp_pre_filter": null,  -            "required": false,  -            "label": "Chronologie",  -            "importer_type": 4,  -            "export_field_name": "datings__period__label" -        } -    },  -    { -        "pk": 15,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "operation__code_patriarche",  -            "column": 14,  -            "formater_type": 1,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 28,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "label",  -            "column": 27,  -            "formater_type": 3,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 13,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "town__numero_insee",  -            "column": 12,  -            "formater_type": 11,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "operation_type",  -            "column": 2,  -            "formater_type": 2,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 4,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "operator__name",  -            "column": 4,  -            "formater_type": 3,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 6,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "start_date",  -            "column": 6,  -            "formater_type": 5,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 7,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "excavation_end_date",  -            "column": 7,  -            "formater_type": 5,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 8,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "periods",  -            "column": 8,  -            "formater_type": 6,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 14,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "address",  -            "column": 13,  -            "formater_type": 10,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 16,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "external_id",  -            "column": 15,  -            "formater_type": 11,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 17,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "source_type",  -            "column": 16,  -            "formater_type": 12,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 18,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "support_type",  -            "column": 17,  -            "formater_type": 13,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 19,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "item_number",  -            "column": 18,  -            "formater_type": 1,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "authors__person__raw_name",  -            "column": 19,  -            "formater_type": 4,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 21,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "creation_date",  -            "column": 20,  -            "formater_type": 14,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 22,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "format_type",  -            "column": 21,  -            "formater_type": 15,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 23,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "description",  -            "column": 22,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 24,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "comment",  -            "column": 23,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 25,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "scale",  -            "column": 24,  -            "formater_type": 17,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 53,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "parcel_number",  -            "column": 51,  -            "formater_type": 8,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 54,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "section",  -            "column": 52,  -            "formater_type": 7,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "scientist__raw_name",  -            "column": 5,  -            "formater_type": 4,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 56,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "year",  -            "column": 11,  -            "formater_type": 14,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 35,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "comment",  -            "column": 34,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 31,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "identification",  -            "column": 30,  -            "formater_type": 24,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 57,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "interpretation",  -            "column": 54,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 26,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "additional_information",  -            "column": 25,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 29,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "unit",  -            "column": 28,  -            "formater_type": 18,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 30,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "description",  -            "column": 29,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 32,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "opening_date",  -            "column": 31,  -            "formater_type": 5,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 33,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "closing_date",  -            "column": 32,  -            "formater_type": 5,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "code_patriarche",  -            "column": 1,  -            "formater_type": 1,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 36,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "datings__period",  -            "column": 35,  -            "formater_type": 6,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": true -        } -    },  -    { -        "pk": 55,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "external_id",  -            "column": 53,  -            "formater_type": 11,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 27,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation__code_patriarche",  -            "column": 26,  -            "formater_type": 1,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 250,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "parcel__external_id",  -            "column": 225,  -            "formater_type": 28,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 34,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "parcel__external_id",  -            "column": 33,  -            "formater_type": 11,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 9,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation__code_patriarche",  -            "column": 9,  -            "formater_type": 1,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 290,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "code_patriarche",  -            "column": 265,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 293,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation_code",  -            "column": 268,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 296,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "periods",  -            "column": 273,  -            "formater_type": 6,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 299,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "scientist__surname",  -            "column": 275,  -            "formater_type": 3,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 365,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__label",  -            "column": 340,  -            "formater_type": 3,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 308,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "surface",  -            "column": 284,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 311,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "end_date",  -            "column": 287,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 368,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__batch",  -            "column": 344,  -            "formater_type": 48,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 317,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "documentation_deadline",  -            "column": 293,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 320,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "finds_received",  -            "column": 296,  -            "formater_type": 19,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 323,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "report_processing",  -            "column": 299,  -            "formater_type": 37,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 325,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "image",  -            "column": 301,  -            "formater_type": 27,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 328,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "town__numero_insee",  -            "column": 304,  -            "formater_type": 11,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 331,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "parcel_number",  -            "column": 307,  -            "formater_type": 8,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 334,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "public_domain",  -            "column": 310,  -            "formater_type": 19,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 338,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "remains",  -            "column": 272,  -            "formater_type": 41,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 371,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "conservatory_state",  -            "column": 347,  -            "formater_type": 22,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 344,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "width",  -            "column": 319,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 374,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "preservation_to_considers",  -            "column": 350,  -            "formater_type": 23,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 349,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "image",  -            "column": 324,  -            "formater_type": 27,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 377,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "length",  -            "column": 353,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 356,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "taq",  -            "column": 331,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 359,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "tpq_estimated",  -            "column": 334,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 379,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "height",  -            "column": 355,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 382,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "find_number",  -            "column": 358,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 384,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "comment",  -            "column": 360,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 385,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "dating_comment",  -            "column": 361,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 350,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "datings__period",  -            "column": 325,  -            "formater_type": 6,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": true -        } -    },  -    { -        "pk": 335,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "parcel__external_id",  -            "column": 311,  -            "formater_type": 28,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "common_name",  -            "column": 3,  -            "formater_type": 3,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 291,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "common_name",  -            "column": 266,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 294,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation_type",  -            "column": 269,  -            "formater_type": 2,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 300,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "scientist__name",  -            "column": 276,  -            "formater_type": 30,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 303,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operator_reference",  -            "column": 279,  -            "formater_type": 3,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 388,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "datings__period",  -            "column": 364,  -            "formater_type": 6,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": true -        } -    },  -    { -        "pk": 309,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "start_date",  -            "column": 285,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 312,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "cira_date",  -            "column": 288,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 37,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 36,  -            "formater_type": 11,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 318,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "documentation_received",  -            "column": 294,  -            "formater_type": 19,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 321,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "comment",  -            "column": 297,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 324,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "scientific_documentation_comment",  -            "column": 300,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 326,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation__code_patriarche",  -            "column": 302,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 332,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "year",  -            "column": 308,  -            "formater_type": 14,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 252,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 227,  -            "formater_type": 28,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 251,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 226,  -            "formater_type": 35,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 345,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "thickness",  -            "column": 320,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 351,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "datings_comment",  -            "column": 326,  -            "formater_type": 16,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 354,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "activity",  -            "column": 329,  -            "formater_type": 42,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 357,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "tpq",  -            "column": 332,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 360,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "old_code",  -            "column": 335,  -            "formater_type": 30,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 38,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__label",  -            "column": 37,  -            "formater_type": 3,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 342,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "comment",  -            "column": 317,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 347,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "location",  -            "column": 322,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 353,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "interpretation",  -            "column": 328,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 341,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "description",  -            "column": 316,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 339,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "label",  -            "column": 314,  -            "formater_type": 30,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 302,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operator__name",  -            "column": 278,  -            "formater_type": 10,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 305,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "in_charge__surname",  -            "column": 281,  -            "formater_type": 39,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 306,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "in_charge__name",  -            "column": 282,  -            "formater_type": 30,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 314,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "cira_rapporteur__surname",  -            "column": 290,  -            "formater_type": 39,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 315,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "cira_rapporteur__name",  -            "column": 291,  -            "formater_type": 30,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 40,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "material_types",  -            "column": 39,  -            "formater_type": 20,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 41,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "find_number",  -            "column": 40,  -            "formater_type": 1,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 42,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "weight",  -            "column": 41,  -            "formater_type": 21,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 43,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "weight_unit",  -            "column": 42,  -            "formater_type": 7,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 45,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "base_finds__discovery_date",  -            "column": 44,  -            "formater_type": 5,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 46,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "conservatory_state",  -            "column": 45,  -            "formater_type": 22,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 47,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "preservation_to_considers",  -            "column": 46,  -            "formater_type": 23,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 48,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__comment",  -            "column": 47,  -            "formater_type": 35,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 253,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "datings__period",  -            "column": 228,  -            "formater_type": 6,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": true -        } -    },  -    { -        "pk": 49,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "base_finds__topographic_localisation",  -            "column": 48,  -            "formater_type": 3,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 50,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "base_finds__special_interest",  -            "column": 49,  -            "formater_type": 3,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 51,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": null,  -            "target": "base_finds__description",  -            "column": 50,  -            "formater_type": 16,  -            "concat_str": null,  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 329,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "external_id",  -            "column": 305,  -            "formater_type": 11,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 348,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "documentations",  -            "column": 323,  -            "formater_type": 52,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 395,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "relation_type",  -            "column": 370,  -            "formater_type": 49,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 394,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "left_record__external_id",  -            "column": 369,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 297,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "archaeological_sites__reference",  -            "column": 271,  -            "formater_type": 45,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 336,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "parcel__external_id",  -            "column": 312,  -            "formater_type": 11,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 366,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "previous_id",  -            "column": 341,  -            "formater_type": 3,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 369,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "is_complete",  -            "column": 345,  -            "formater_type": 19,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 372,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "conservatory_comment",  -            "column": 348,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 375,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "integrities",  -            "column": 351,  -            "formater_type": 43,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 378,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "width",  -            "column": 354,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 380,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "diameter",  -            "column": 356,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 383,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "mark",  -            "column": 359,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 386,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "estimated_value",  -            "column": 362,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 398,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "container__responsible__external_id",  -            "column": 373,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 400,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "container__container_type",  -            "column": 375,  -            "formater_type": 50,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 254,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "label",  -            "column": 229,  -            "formater_type": 3,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 402,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "title",  -            "column": 377,  -            "formater_type": 4,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 404,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "index",  -            "column": 379,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 406,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "internal_reference",  -            "column": 381,  -            "formater_type": 51,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 408,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "receipt_date",  -            "column": 383,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 410,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "receipt_date_in_documentation",  -            "column": 385,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 412,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "description",  -            "column": 387,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 414,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "authors__person__raw_name",  -            "column": 389,  -            "formater_type": 4,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 396,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "right_record__external_id",  -            "column": 371,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 361,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 336,  -            "formater_type": 11,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 362,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 337,  -            "formater_type": 28,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 363,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 338,  -            "formater_type": 35,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 364,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 339,  -            "formater_type": 3,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 389,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__topographic_localisation",  -            "column": 343,  -            "formater_type": 3,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 367,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "description",  -            "column": 342,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 370,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "material_types",  -            "column": 346,  -            "formater_type": 20,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 373,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "object_types",  -            "column": 349,  -            "formater_type": 26,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 376,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "remarkabilities",  -            "column": 352,  -            "formater_type": 44,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 381,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "dimensions_comment",  -            "column": 357,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 397,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "weight",  -            "column": 372,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 387,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "image",  -            "column": 363,  -            "formater_type": 27,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 390,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__x",  -            "column": 365,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 391,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__y",  -            "column": 366,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 392,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__z",  -            "column": 367,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 393,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__spatial_reference_system",  -            "column": 368,  -            "formater_type": 46,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 399,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "container__reference",  -            "column": 374,  -            "formater_type": 17,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 44,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "base_finds__context_record__external_id",  -            "column": 43,  -            "formater_type": 3,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 327,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation__code_patriarche",  -            "column": 303,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 403,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "source_type",  -            "column": 378,  -            "formater_type": 12,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 401,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "operation__code_patriarche",  -            "column": 376,  -            "formater_type": 35,  -            "concat_str": "-",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 405,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "reference",  -            "column": 380,  -            "formater_type": 51,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 407,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "associated_url",  -            "column": 382,  -            "formater_type": 4,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 409,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "creation_date",  -            "column": 384,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 411,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "comment",  -            "column": 386,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 413,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "additional_information",  -            "column": 388,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 295,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "associated_file__external_id",  -            "column": 270,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 415,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "duplicate",  -            "column": 390,  -            "formater_type": 19,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 310,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "excavation_end_date",  -            "column": 286,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 313,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "negative_result",  -            "column": 289,  -            "formater_type": 19,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 319,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "finds_deadline",  -            "column": 295,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 322,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "report_delivery_date",  -            "column": 298,  -            "formater_type": 25,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 330,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "section",  -            "column": 306,  -            "formater_type": 7,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 333,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "address",  -            "column": 309,  -            "formater_type": 10,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 292,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "year",  -            "column": 267,  -            "formater_type": 14,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 337,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "parcel__year",  -            "column": 313,  -            "formater_type": 14,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 340,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "unit",  -            "column": 315,  -            "formater_type": 18,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 343,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "length",  -            "column": 318,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 346,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "depth",  -            "column": 321,  -            "formater_type": 21,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 301,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "scientist__attached_to__name",  -            "column": 277,  -            "formater_type": 30,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 355,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "identification",  -            "column": 330,  -            "formater_type": 24,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 358,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "taq_estimated",  -            "column": 333,  -            "formater_type": 1,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 352,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "filling",  -            "column": 327,  -            "formater_type": 35,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 304,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "in_charge__title",  -            "column": 280,  -            "formater_type": 47,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 298,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "scientist__title",  -            "column": 274,  -            "formater_type": 47,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 307,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "in_charge__attached_to__name",  -            "column": 283,  -            "formater_type": 10,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 316,  -        "model": "ishtar_common.importtarget",  -        "fields": { -            "comment": "",  -            "target": "cira_rapporteur__attached_to__name",  -            "column": 292,  -            "formater_type": 10,  -            "concat_str": "",  -            "regexp_filter": null,  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 25,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "DateFormater",  -            "many_split": " | ",  -            "options": "%d/%m/%Y | %Y-%m-%d" -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "DateFormater",  -            "many_split": "",  -            "options": "%Y/%m/%d" -        } -    },  -    { -        "pk": 27,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "FileFormater",  -            "many_split": "",  -            "options": "" -        } -    },  -    { -        "pk": 21,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "FloatFormater",  -            "many_split": "",  -            "options": "" -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "IntegerFormater",  -            "many_split": "",  -            "options": "" -        } -    },  -    { -        "pk": 19,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "StrToBoolean",  -            "many_split": "",  -            "options": "" -        } -    },  -    { -        "pk": 42,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_context_records.models.ActivityType" -        } -    },  -    { -        "pk": 52,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "&",  -            "options": "archaeological_context_records.models.DocumentationType" -        } -    },  -    { -        "pk": 24,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_context_records.models.IdentificationType" -        } -    },  -    { -        "pk": 49,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_context_records.models.RelationType" -        } -    },  -    { -        "pk": 18,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_context_records.models.Unit" -        } -    },  -    { -        "pk": 34,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_files.models.PermitType" -        } -    },  -    { -        "pk": 32,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_files.models.SaisineType" -        } -    },  -    { -        "pk": 48,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_finds.models.BatchType" -        } -    },  -    { -        "pk": 22,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_finds.models.ConservatoryState" -        } -    },  -    { -        "pk": 43,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "&",  -            "options": "archaeological_finds.models.IntegrityType" -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "&",  -            "options": "archaeological_finds.models.MaterialType" -        } -    },  -    { -        "pk": 26,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_finds.models.ObjectType" -        } -    },  -    { -        "pk": 23,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_finds.models.PreservationType" -        } -    },  -    { -        "pk": 44,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "&",  -            "options": "archaeological_finds.models.RemarkabilityType" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_operations.models.OperationType" -        } -    },  -    { -        "pk": 6,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "&",  -            "options": "archaeological_operations.models.Period" -        } -    },  -    { -        "pk": 41,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "&",  -            "options": "archaeological_operations.models.RemainType" -        } -    },  -    { -        "pk": 37,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_operations.models.ReportState" -        } -    },  -    { -        "pk": 50,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "archaeological_warehouse.models.ContainerType" -        } -    },  -    { -        "pk": 15,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "Format" -        } -    },  -    { -        "pk": 12,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "SourceType" -        } -    },  -    { -        "pk": 46,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "SpatialReferenceSystem" -        } -    },  -    { -        "pk": 13,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "SupportType" -        } -    },  -    { -        "pk": 47,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "TypeFormater",  -            "many_split": "",  -            "options": "TitleType" -        } -    },  -    { -        "pk": 35,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "" -        } -    },  -    { -        "pk": 38,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "10" -        } -    },  -    { -        "pk": 51,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "100" -        } -    },  -    { -        "pk": 16,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "1000" -        } -    },  -    { -        "pk": 11,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "12" -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "120" -        } -    },  -    { -        "pk": 45,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "20" -        } -    },  -    { -        "pk": 30,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "200" -        } -    },  -    { -        "pk": 33,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "2000" -        } -    },  -    { -        "pk": 17,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "30" -        } -    },  -    { -        "pk": 4,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "300" -        } -    },  -    { -        "pk": 7,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "4" -        } -    },  -    { -        "pk": 28,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "5" -        } -    },  -    { -        "pk": 39,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "50" -        } -    },  -    { -        "pk": 10,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "500" -        } -    },  -    { -        "pk": 8,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "6" -        } -    },  -    { -        "pk": 36,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "60" -        } -    },  -    { -        "pk": 31,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnicodeFormater",  -            "many_split": "",  -            "options": "70" -        } -    },  -    { -        "pk": 29,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "UnknowType",  -            "many_split": "",  -            "options": "" -        } -    },  -    { -        "pk": 14,  -        "model": "ishtar_common.formatertype",  -        "fields": { -            "formater_type": "YearFormater",  -            "many_split": "",  -            "options": "%Y" -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 5,  -            "concat_str": null,  -            "field_name": "scientist__name",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 15,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 9,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 16,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 12,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 17,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 26,  -            "concat_str": "-",  -            "field_name": "parcel__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 18,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 26,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 19,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 225,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 33,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 6,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 27,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 34,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 303,  -            "concat_str": "",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 33,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 304,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 31,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 302,  -            "concat_str": "-",  -            "field_name": "parcel__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 32,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 302,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 35,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 311,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 36,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 312,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 37,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 314,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 38,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 336,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 39,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 336,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 40,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 337,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 41,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 337,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 42,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 338,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 43,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 338,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 44,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 339,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 45,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 339,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 46,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 340,  -            "concat_str": "",  -            "field_name": "label",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 47,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 340,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 48,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 340,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 49,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 373,  -            "concat_str": "",  -            "field_name": "container__location__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 50,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 373,  -            "concat_str": "",  -            "field_name": "container__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 51,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 374,  -            "concat_str": "",  -            "field_name": "container__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 21,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 36,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 29,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 36,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 22,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 227,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 28,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 227,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 23,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 226,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 27,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 226,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 24,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 43,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 26,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 43,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 37,  -            "concat_str": null,  -            "field_name": "label",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 37,  -            "concat_str": "-",  -            "field_name": "base_finds__external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 25,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 37,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 52,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 376,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    },  -    { -        "pk": 53,  -        "model": "ishtar_common.importerduplicatefield",  -        "fields": { -            "column": 379,  -            "concat_str": "-",  -            "field_name": "external_id",  -            "concat": false,  -            "force_new": false -        } -    } -]
\ No newline at end of file +{ +    "fields": { +        "name": "Organisation", +        "klass": "ishtar_common.models.Organization" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 1 +}, +{ +    "fields": { +        "name": "Dossier arch\u00e9ologique", +        "klass": "archaeological_files.models.File" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 2 +}, +{ +    "fields": { +        "name": "Mobilier de base", +        "klass": "archaeological_finds.models.BaseFind" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 3 +}, +{ +    "fields": { +        "name": "Entit\u00e9 arch\u00e9ologique", +        "klass": "archaeological_operations.models.ArchaeologicalSite" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 4 +}, +{ +    "fields": { +        "name": "Personne", +        "klass": "ishtar_common.models.Person" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 5 +}, +{ +    "fields": { +        "name": "Op\u00e9ration", +        "klass": "archaeological_operations.models.Operation" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 6 +}, +{ +    "fields": { +        "name": "Unit\u00e9 d'Enregistrement", +        "klass": "archaeological_context_records.models.ContextRecord" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 7 +}, +{ +    "fields": { +        "name": "Documentation d'op\u00e9ration", +        "klass": "archaeological_operations.models.OperationSource" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 8 +}, +{ +    "fields": { +        "name": "Parcelle", +        "klass": "archaeological_operations.models.Parcel" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 9 +}, +{ +    "fields": { +        "name": "Relation entre Unit\u00e9s d'Enregistrement", +        "klass": "archaeological_context_records.models.RecordRelations" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 10 +}, +{ +    "fields": { +        "name": "Datation", +        "klass": "archaeological_context_records.models.Dating" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 11 +}, +{ +    "fields": { +        "name": "Find", +        "klass": "archaeological_finds.models_finds.Find" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 12 +}, +{ +    "fields": { +        "name": "Documentation d'UE", +        "klass": "archaeological_context_records.models.ContextRecordSource" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 13 +}, +{ +    "fields": { +        "name": "Documentation mobilier", +        "klass": "archaeological_finds.models_finds.FindSource" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 14 +}, +{ +    "fields": { +        "name": "Documentation de traitement", +        "klass": "archaeological_finds.models_treatments.TreatmentSource" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 15 +}, +{ +    "fields": { +        "name": "Documentation de demande de traitement", +        "klass": "archaeological_finds.models_treatments.TreatmentFileSource" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 16 +}, +{ +    "fields": { +        "name": "Auteur", +        "klass": "ishtar_common.models.Author" +    }, +    "model": "ishtar_common.importermodel", +    "pk": 17 +}, +{ +    "fields": { +        "description": "", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "code_patriarche", +        "users": [], +        "slug": "mcc-operations", +        "associated_models": 6, +        "name": "MCC - Op\u00e9rations" +    }, +    "model": "ishtar_common.importertype", +    "pk": 1 +}, +{ +    "fields": { +        "description": "", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "mcc-parcelles", +        "associated_models": 9, +        "name": "MCC - Parcelles" +    }, +    "model": "ishtar_common.importertype", +    "pk": 2 +}, +{ +    "fields": { +        "description": "", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "", +        "users": [], +        "slug": "mcc-documentation", +        "associated_models": 8, +        "name": "MCC - Documentation" +    }, +    "model": "ishtar_common.importertype", +    "pk": 3 +}, +{ +    "fields": { +        "description": "", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "mcc-ue", +        "associated_models": 7, +        "name": "MCC - UE" +    }, +    "model": "ishtar_common.importertype", +    "pk": 4 +}, +{ +    "fields": { +        "description": "", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "mcc-mobilier", +        "associated_models": 12, +        "name": "MCC - Mobilier" +    }, +    "model": "ishtar_common.importertype", +    "pk": 5 +}, +{ +    "fields": { +        "description": "Import complet standard operations", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "code_patriarche", +        "users": [], +        "slug": "ishtar-operations", +        "associated_models": 6, +        "name": "Ishtar - Op\u00e9rations" +    }, +    "model": "ishtar_common.importertype", +    "pk": 17 +}, +{ +    "fields": { +        "description": "Unit\u00e9s d'enregisttrement", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "ishtar-context-record", +        "associated_models": 7, +        "name": "Ishtar - UE" +    }, +    "model": "ishtar_common.importertype", +    "pk": 18 +}, +{ +    "fields": { +        "description": "Parcelles de terrain", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "ishtar-parcels", +        "associated_models": 9, +        "name": "Ishtar - Parcelles" +    }, +    "model": "ishtar_common.importertype", +    "pk": 19 +}, +{ +    "fields": { +        "description": "Mobilier", +        "created_models": [], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "ishtar-finds", +        "associated_models": 12, +        "name": "Ishtar - Mobilier" +    }, +    "model": "ishtar_common.importertype", +    "pk": 20 +}, +{ +    "fields": { +        "description": "", +        "created_models": [ +            10 +        ], +        "is_template": true, +        "unicity_keys": "", +        "users": [], +        "slug": "ishtar-ue-relations", +        "associated_models": 10, +        "name": "Ishtar - Relations entre UE" +    }, +    "model": "ishtar_common.importertype", +    "pk": 21 +}, +{ +    "fields": { +        "description": "Documentation d'op\u00e9ration", +        "created_models": [ +            17, +            8, +            5 +        ], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "ishtar-operations-sources", +        "associated_models": 8, +        "name": "Ishtar - Op\u00e9rations - Documentation" +    }, +    "model": "ishtar_common.importertype", +    "pk": 22 +}, +{ +    "fields": { +        "description": "Importeur de mobilier + parcelles et UE", +        "created_models": [ +            9, +            7 +        ], +        "is_template": true, +        "unicity_keys": "external_id", +        "users": [], +        "slug": "ishtar_finds_parcels_and_cr", +        "associated_models": 12, +        "name": "Ishtar - Mobilier_COMBO" +    }, +    "model": "ishtar_common.importertype", +    "pk": 23 +}, +{ +    "fields": { +        "regexp": "([0-9]*)", +        "name": "Num\u00e9ro INSEE", +        "description": "" +    }, +    "model": "ishtar_common.regexp", +    "pk": 2 +}, +{ +    "fields": { +        "importer_type": 1, +        "target": "operator" +    }, +    "model": "ishtar_common.importerdefault", +    "pk": 1 +}, +{ +    "fields": { +        "importer_type": 3, +        "target": "authors" +    }, +    "model": "ishtar_common.importerdefault", +    "pk": 2 +}, +{ +    "fields": { +        "importer_type": 17, +        "target": "operator" +    }, +    "model": "ishtar_common.importerdefault", +    "pk": 23 +}, +{ +    "fields": { +        "importer_type": 17, +        "target": "scientist__person_types" +    }, +    "model": "ishtar_common.importerdefault", +    "pk": 24 +}, +{ +    "fields": { +        "importer_type": 22, +        "target": "authors" +    }, +    "model": "ishtar_common.importerdefault", +    "pk": 25 +}, +{ +    "fields": { +        "importer_type": 19, +        "target": "public_domain" +    }, +    "model": "ishtar_common.importerdefault", +    "pk": 26 +}, +{ +    "fields": { +        "default_target": 1, +        "target": "organization_type", +        "value": "operator" +    }, +    "model": "ishtar_common.importerdefaultvalues", +    "pk": 1 +}, +{ +    "fields": { +        "default_target": 2, +        "target": "author_type", +        "value": "main_author" +    }, +    "model": "ishtar_common.importerdefaultvalues", +    "pk": 2 +}, +{ +    "fields": { +        "default_target": 23, +        "target": "organization_type", +        "value": "operator" +    }, +    "model": "ishtar_common.importerdefaultvalues", +    "pk": 29 +}, +{ +    "fields": { +        "default_target": 24, +        "target": "txt_idx", +        "value": "head_scientist" +    }, +    "model": "ishtar_common.importerdefaultvalues", +    "pk": 30 +}, +{ +    "fields": { +        "default_target": 25, +        "target": "author_type", +        "value": "main_author" +    }, +    "model": "ishtar_common.importerdefaultvalues", +    "pk": 31 +}, +{ +    "fields": { +        "default_target": 26, +        "target": "public_domain", +        "value": "False" +    }, +    "model": "ishtar_common.importerdefaultvalues", +    "pk": 32 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code Patriarche", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code Patriarche", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 1 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Type d'op\u00e9ration", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 2 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Nom de l'op\u00e9ration", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 3 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Nom de l'op\u00e9rateur", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 4 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Nom du responsable de l'op\u00e9ration. Nom et Pr\u00e9nom sont group\u00e9s et donc mis dans le NOM seul dans l'annuaire.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Nom du responsable de l'op\u00e9ration", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 5 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "Date de d\u00e9but de l'op\u00e9ration avec le format ANN\u00c9E/MOIS/JOUR", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Date d\u00e9but", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 6 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Date de fin de l'op\u00e9ration avec le format ANN\u00c9E/MOIS/JOUR", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Date fin", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 7 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "P\u00e9riodes", +        "importer_type": 1, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 8 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code Patriarche de l'op\u00e9ration associ\u00e9e", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code Patriarche", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 9 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Ann\u00e9e", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Ann\u00e9e cadastrale", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 11 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE)", +        "regexp_pre_filter": 2, +        "required": true, +        "label": "Commune", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 12 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "Lieu dit / adresse", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Adresse", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 13 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code Patriarche de l'op\u00e9ration associ\u00e9e", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code Patriarche", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 14 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Identifiant externe", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 15 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Type de document", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 16 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type de support", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 17 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Num\u00e9ro", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 18 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nom de l'auteur", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 19 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de cr\u00e9ation", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 20 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type de format", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 21 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 22 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 23 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "\u00c9chelle", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 24 +}, +{ +    "fields": { +        "col_number": 16, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Information suppl\u00e9mentaire", +        "importer_type": 3, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 25 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code Patriarche de l'op\u00e9ration associ\u00e9e", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code Patriarche", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 26 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Identifiant externe ", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Identifiant externe", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 27 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Type", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 28 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Description", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 29 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "Identification", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Identification", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 30 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Date d'ouverture", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date d\u00e9but", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 31 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "Date de fermeture", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date fin", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 32 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Parcelle (identifiant externe)", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Parcelle", +        "importer_type": 4, +        "export_field_name": "parcel__section|parcel__parcel_number" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 33 +}, +{ +    "fields": { +        "col_number": 11, +        "description": "Commentaire", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 34 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "Chronologie (plusieurs possibles s\u00e9par\u00e9es par &)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Chronologie", +        "importer_type": 4, +        "export_field_name": "datings__period__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 35 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code patriarche de l'op\u00e9ration associ\u00e9e", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code Patriarche", +        "importer_type": 5, +        "export_field_name": "base_finds__context_record__operation__code_patriarche" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 36 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Identifiant externe", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Identifiant externe", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 37 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "Sous classe de mat\u00e9riaux", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Mat\u00e9riau", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 39 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "Nombre d'\u00e9l\u00e9ments", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nombre d'\u00e9l\u00e9ments", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 40 +}, +{ +    "fields": { +        "col_number": 14, +        "description": "Poids", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Poids", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 41 +}, +{ +    "fields": { +        "col_number": 15, +        "description": "Unit\u00e9 de poids", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Unit\u00e9 de poids", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 42 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Identifiant UE", +        "regexp_pre_filter": null, +        "required": true, +        "label": "UE", +        "importer_type": 5, +        "export_field_name": "base_finds__context_record__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 43 +}, +{ +    "fields": { +        "col_number": 16, +        "description": "Date de d\u00e9couverte", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de d\u00e9couverte", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 44 +}, +{ +    "fields": { +        "col_number": 17, +        "description": "\u00c9tat de conservation", +        "regexp_pre_filter": null, +        "required": false, +        "label": "\u00c9tat de conservation", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 45 +}, +{ +    "fields": { +        "col_number": 18, +        "description": "Mesure de conservation", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Mesure de conservation", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 46 +}, +{ +    "fields": { +        "col_number": 19, +        "description": "Commentaire", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 47 +}, +{ +    "fields": { +        "col_number": 21, +        "description": "Localisation topographique", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Localisation topographique", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 48 +}, +{ +    "fields": { +        "col_number": 22, +        "description": "Int\u00e9r\u00eat sp\u00e9cifique", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Int\u00e9r\u00eat sp\u00e9cifique", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 49 +}, +{ +    "fields": { +        "col_number": 23, +        "description": "Description", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 50 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Num\u00e9ro", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Parcelle", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 51 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Section", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Section cadastrale", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 52 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Identifiant externe", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Identifiant externe", +        "importer_type": 2, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 53 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "Nature", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nature", +        "importer_type": 4, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 54 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE)", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Commune", +        "importer_type": 4, +        "export_field_name": "parcel__town__numero_insee" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 225 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Identifiant parcelle", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Parcelle", +        "importer_type": 5, +        "export_field_name": "base_finds__context_record__parcel__section|base_finds__context_record__parcel__parcel_number" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 226 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE)", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Commune", +        "importer_type": 5, +        "export_field_name": "base_finds__context_record__parcel__town__numero_insee" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 227 +}, +{ +    "fields": { +        "col_number": 20, +        "description": "Datations s\u00e9par\u00e9es par des \"&\"", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Datation", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 228 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "Ref. du contenant / label temporaire utilis\u00e9 pour le mobilier = label libre = Label pour l'instant", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Libell\u00e9 contenant", +        "importer_type": 5, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 229 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code op\u00e9ration", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 265 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Nom usuel de l'op\u00e9ration.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Nom", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 266 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Ann\u00e9e de r\u00e9f\u00e9rence (peut \u00eatre celle o\u00f9 le projet d'op\u00e9ration a \u00e9t\u00e9 cr\u00e9\u00e9 ou bien celle de la r\u00e9alisation selon votre usage).", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Ann\u00e9e", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 267 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Index (num\u00e9ro par ann\u00e9e), le couple ann\u00e9e + index doit \u00eatre unique.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Index (num\u00e9ro par ann\u00e9e)", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 268 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Type d'op\u00e9ration (parmi une liste).", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Type d'op\u00e9ration", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 269 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "R\u00e9f\u00e9rence du dossier administratif associ\u00e9 \u00e0 l'op\u00e9ration sous la forme ANNEE-INDEX. Exemple : \"2002-4\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "R\u00e9f\u00e9rence du dossier administratif", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 270 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Identifiants des sites (entit\u00e9s arch\u00e9ologiques) concern\u00e9es par l'op\u00e9ration, s\u00e9par\u00e9es par \u00ab\u00a0&\u00a0\u00bb. Exemple : \"44 125 0028 & 44 125 0029\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Identifiants des sites (EAs)", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 271 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "Types de vestiges (s\u00e9par\u00e9s par un \u00ab\u00a0&\u00a0\u00bb). Exemple : \"four & fosses & villa\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Types de vestiges", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 272 +}, +{ +    "fields": { +        "col_number": 10, +        "description": "P\u00e9riodes concern\u00e9es (s\u00e9par\u00e9es par un \u00ab\u00a0&\u00a0\u00bb). \r\nExemple : \"Gallo-romain & Fer & Med\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "P\u00e9riodes", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 273 +}, +{ +    "fields": { +        "col_number": 11, +        "description": "Titre (M., Mme, etc.) du responsable scientifique.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Titre du responsable scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 274 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "Pr\u00e9nom du responsable scientifique (responsable d'op\u00e9ration).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Pr\u00e9nom du responsable scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 275 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "Nom du responsable scientifique (responsable d'op\u00e9ration).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nom du responsable scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 276 +}, +{ +    "fields": { +        "col_number": 14, +        "description": "Rattachement du responsable scientifique (responsable d'op\u00e9ration). Exemple : \"INRAP\" ou plus pr\u00e9cis \"INRAP Direction interr\u00e9gionale Grand Ouest\" selon votre degr\u00e9 de pr\u00e9cision dans la gestion des rattachements et des organisations.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Rattachement du responsable scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 277 +}, +{ +    "fields": { +        "col_number": 15, +        "description": "Nom de l'op\u00e9rateur (organisation). Peut \u00eatre diff\u00e9rent de l'organisation de rattachement du responsable d'op\u00e9ration.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nom de l'op\u00e9rateur", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 278 +}, +{ +    "fields": { +        "col_number": 16, +        "description": "R\u00e9f\u00e9rence de l'op\u00e9rateur (code ou autre r\u00e9f\u00e9rence interne de l'op\u00e9rateur).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "R\u00e9f\u00e9rence de l'op\u00e9rateur", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 279 +}, +{ +    "fields": { +        "col_number": 17, +        "description": "Titre (M., Mme, etc.) du responsable du suivi scientifique.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Titre du responsable du suivi scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 280 +}, +{ +    "fields": { +        "col_number": 18, +        "description": "Pr\u00e9nom du responsable du suivi scientifique. Exemple\u00a0: resp. SRA ou pilote de l'op\u00e9ration, mais non responsable de celle-ci.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Pr\u00e9nom du responsable du suivi scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 281 +}, +{ +    "fields": { +        "col_number": 19, +        "description": "Nom du responsable du suivi scientifique. Exemple : resp. SRA ou pilote de l'op\u00e9ration, mais non responsable de celle-ci.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nom du responsable du suivi scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 282 +}, +{ +    "fields": { +        "col_number": 20, +        "description": "Rattachement du responsable du suivi scientifique.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Rattachement du responsable du suivi scientifique", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 283 +}, +{ +    "fields": { +        "col_number": 21, +        "description": "Surface couverte par l'op\u00e9ration (m2).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Surface couverte par l'op\u00e9ration", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 284 +}, +{ +    "fields": { +        "col_number": 22, +        "description": "Date de d\u00e9but de l'op\u00e9ration (habituellement d\u00e9but du terrain mais vous pouvez utiliser autre chose).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de d\u00e9but de l'op\u00e9ration", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 285 +}, +{ +    "fields": { +        "col_number": 23, +        "description": "Date de fin de l'op\u00e9ration (habituellement fin du terrain mais vous pouvez utiliser autre chose).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de fin de l'op\u00e9ration", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 286 +}, +{ +    "fields": { +        "col_number": 24, +        "description": "Date de cl\u00f4ture (peut \u00eatre la date de rendu de la documentation, la fin de la recherche associ\u00e9e ou autre). Habituellement cela repr\u00e9sente la date \u00e0 partir de laquelle la documentation issue de l'op\u00e9ration n'est plus du ressort du responsable d'op\u00e9ration, mais vous pouvez utiliser autre chose.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de cl\u00f4ture", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 287 +}, +{ +    "fields": { +        "col_number": 25, +        "description": "Date d'avis. Exemple\u00a0: avis de CIRA ou autre selon votre usage.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date d'avis", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 288 +}, +{ +    "fields": { +        "col_number": 26, +        "description": "R\u00e9sultats consid\u00e9r\u00e9s comme n\u00e9gatif (d\u2019ordinaire utilis\u00e9 pour les diagnostics n\u00e9gatifs).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "R\u00e9sultats consid\u00e9r\u00e9s comme n\u00e9gatif", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 289 +}, +{ +    "fields": { +        "col_number": 27, +        "description": "Pr\u00e9nom du rapporteur (CIRA ou autre selon votre usage de la notion d'avis).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Pr\u00e9nom du rapporteur", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 290 +}, +{ +    "fields": { +        "col_number": 28, +        "description": "Nom du rapporteur (CIRA ou autre selon votre usage de la notion d'avis).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nom du rapporteur", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 291 +}, +{ +    "fields": { +        "col_number": 29, +        "description": "Rattachement rapporteur (organisation).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Rattachement du rapporteur", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 292 +}, +{ +    "fields": { +        "col_number": 30, +        "description": "Date limite pr\u00e9vue pour le rendu de la documentation scientifique.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date limite pour le rendu de la documentation", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 293 +}, +{ +    "fields": { +        "col_number": 31, +        "description": "Documentation re\u00e7ue.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Documentation re\u00e7ue", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 294 +}, +{ +    "fields": { +        "col_number": 32, +        "description": "Date limite pr\u00e9vue pour le rendu du mobilier.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date limite rendu du mobilier", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 295 +}, +{ +    "fields": { +        "col_number": 33, +        "description": "Mobilier re\u00e7u ou livr\u00e9 selon vos usages et proc\u00e9dures.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Mobilier re\u00e7u", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 296 +}, +{ +    "fields": { +        "col_number": 34, +        "description": "Commentaire g\u00e9n\u00e9ral.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire g\u00e9n\u00e9ral", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 297 +}, +{ +    "fields": { +        "col_number": 35, +        "description": "Date de livraison du rapport.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de livraison du rapport", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 298 +}, +{ +    "fields": { +        "col_number": 36, +        "description": "\u00c9tat de traitement du rapport.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "\u00c9tat de traitement du rapport", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 299 +}, +{ +    "fields": { +        "col_number": 37, +        "description": "Commentaire sur la documentation scientifique (y compris mobilier).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire sur la documentation", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 300 +}, +{ +    "fields": { +        "col_number": 38, +        "description": "Nom du fichier image (jpg ou png. Exemple \"IMG_5023.jpg\". Les fichiers images doivent \u00eatre joints \u00e0 l'import dans un fichier ZIP.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Image", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 301 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code PATRIARCHE ou code UNIQUE de l'op\u00e9ration associ\u00e9e.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code op\u00e9ration", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 302 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code op\u00e9ration", +        "importer_type": 19, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 303 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE).", +        "regexp_pre_filter": 2, +        "required": true, +        "label": "Commune", +        "importer_type": 19, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 304 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Identifiant externe.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "ID externe", +        "importer_type": 19, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 305 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Section. Exemple : \"ZA\". Maximum 4 caract\u00e8res.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Section", +        "importer_type": 19, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 306 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Num\u00e9ro de la parcelle. Exemple : \"253\". Peut accueillir une r\u00e9f\u00e9rence sous la forme de caract\u00e8res (maximum 6).", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Parcelle", +        "importer_type": 19, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 307 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Ann\u00e9e de la r\u00e9f\u00e9rence cadastrale. Exemple : \"1980\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Ann\u00e9e cadastrale", +        "importer_type": 19, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 308 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "Lieu-dit ou adresse associ\u00e9s \u00e0 la parcelle.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Adresse", +        "importer_type": 19, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 309 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Parcelle dans le domaine public ou non (oui/non).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Domaine public", +        "importer_type": 19, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 310 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE).", +        "regexp_pre_filter": null, +        "required": true, +        "label": "INSEE", +        "importer_type": 18, +        "export_field_name": "parcel__town__numero_insee" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 311 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Parcelle (identifiant externe), soit la section plus la parcelle sans espaces. Exemple : \"ZA253\".", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Parcelle", +        "importer_type": 18, +        "export_field_name": "parcel__section|parcel__parcel_number" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 312 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Ann\u00e9e de la r\u00e9f\u00e9rence cadastrale. Exemple : \"1980\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Ann\u00e9e cadastre", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 313 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Identifiant (externe) de l'UE. Exemple : \"US 145\", \"Tranch\u00e9e 145\", \"145\", \"St 17\", etc. Doit \u00eatre unique pour une parcelle donn\u00e9e. Maximum 200 caract\u00e8res.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Identifiant UE", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 314 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Type d'UE. Exemple : \"US\", \"Couche\", \"Tranch\u00e9e\", \"zone\", \"Secteur\", \"Log\", \"Carr\u00e9\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 315 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "Description.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 316 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Commentaire g\u00e9n\u00e9ral.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire g\u00e9n\u00e9ral", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 317 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "Taille ou longueur (en m\u00e8tre). Exemple : \"1.2\", \"12\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Taille ou longueur", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 318 +}, +{ +    "fields": { +        "col_number": 10, +        "description": "Largeur (en m\u00e8tre). Exemple : \"1.2\", \"12\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Largeur", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 319 +}, +{ +    "fields": { +        "col_number": 11, +        "description": "\u00c9paisseur (en m\u00e8tre). Exemple : \"0.2\", \"2\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "\u00c9paisseur", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 320 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "Profondeur (en m\u00e8tre). Exemple : \"0.2\", \"2\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Profondeur", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 321 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "Lieu, description textuelle de la localisation. Exemple : \"Au pied de l'arbre du P\u00e8re Jahouen\", \"En limite nord de la parcelle\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Lieu, localisation", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 322 +}, +{ +    "fields": { +        "col_number": 14, +        "description": "Champ \u00e0 choix multiple (s\u00e9par\u00e9 par \u00ab & \u00bb) permettant de pr\u00e9ciser : contient du mobilier, dispose d'une photo, etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Documentations", +        "importer_type": 18, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 323 +}, +{ +    "fields": { +        "col_number": 15, +        "description": "Nom du fichier image (jpg ou png). Exemple : \"IMG_5023.jpg\". Les fichiers images doivent \u00eatre joints \u00e0 l'import dans un fichier ZIP.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Image", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 324 +}, +{ +    "fields": { +        "col_number": 16, +        "description": "Chronologies associ\u00e9es (plusieurs possibles s\u00e9par\u00e9es par &). Exemple : \"Gallo-romain & M\u00e9di\u00e9val\", \"GR&MED\", \"M\u00e9solithique final & M\u00e9so moyen & Epipal\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "P\u00e9riodes", +        "importer_type": 18, +        "export_field_name": "datings__period__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 325 +}, +{ +    "fields": { +        "col_number": 17, +        "description": "Commentaire sur les datations. Exemple : \"IIe - IIIe s.\", \"fin XVe ou plus tard\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire sur les datations", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 326 +}, +{ +    "fields": { +        "col_number": 18, +        "description": "Description du remplissage. Exemple : \"Limons argileux brun riche en charbons\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description du remplissage", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 327 +}, +{ +    "fields": { +        "col_number": 19, +        "description": "Interpr\u00e9tation. Exemple : \"Mur de cl\u00f4ture\", \"Sol couvert d'une mosa\u00efque, \"Pal\u00e9osol du d\u00e9but de l'Holoc\u00e8ne\", \"Four de r\u00e9duction de minerai de fer\", \"TP\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Interpr\u00e9tation", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 328 +}, +{ +    "fields": { +        "col_number": 20, +        "description": "Activit\u00e9, r\u00e9f\u00e9rence \u00e0 des types. Exemple : \"Naturelle\", \"Construction\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type d'activit\u00e9", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 329 +}, +{ +    "fields": { +        "col_number": 21, +        "description": "Identification (type). Exemple : \"Niveau d'occupation\", \"Mur\", \"Colluvions\", \"Chablis\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Identification (type)", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 330 +}, +{ +    "fields": { +        "col_number": 22, +        "description": "Terminus ante quem, limite temporelle avant laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "TAQ", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 331 +}, +{ +    "fields": { +        "col_number": 23, +        "description": "Terminus post quem, limite temporelle apr\u00e8s laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "TPQ", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 332 +}, +{ +    "fields": { +        "col_number": 24, +        "description": "Terminus ante quem estim\u00e9, limite temporelle avant laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "TAQ estim\u00e9", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 333 +}, +{ +    "fields": { +        "col_number": 25, +        "description": "Terminus post quem estim\u00e9, limite temporelle avant laquelle l'UE s'est form\u00e9e, ici sous la forme de valeurs enti\u00e8res. Exemple : \"322\", \"-45\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "TPQ estim\u00e9", +        "importer_type": 18, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 334 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Ancien code unique de l'op\u00e9ration, peut \u00eatre la r\u00e9f\u00e9rence unique d'une op\u00e9ration pass\u00e9e comme un code DRACAR par exemple, 200 carac. max.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Ancien code", +        "importer_type": 17, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 335 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code op\u00e9ration", +        "importer_type": 20, +        "export_field_name": "base_finds__context_record__operation__code_patriarche" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 336 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE).", +        "regexp_pre_filter": null, +        "required": true, +        "label": "INSEE", +        "importer_type": 20, +        "export_field_name": "base_finds__context_record__parcel__town__numero_insee" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 337 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Parcelle (identifiant externe), soit la section plus la parcelle sans espaces. Exemple : \"ZA253\".", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Parcelle", +        "importer_type": 20, +        "export_field_name": "base_finds__context_record__parcel__section|base_finds__context_record__parcel__parcel_number" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 338 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Label / Identifiant (externe) de l'UE. Exemple : \"US 145\", \"Tranch\u00e9e 145\", \"145\", \"St 17\", etc. Doit \u00eatre unique pour une parcelle donn\u00e9e.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Label UE", +        "importer_type": 20, +        "export_field_name": "base_finds__context_record__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 339 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Identifiant libre pour le mobilier. Exemple : \"12\", \"Lot 24\", \"Sac vert\", etc.\r\nDoit \u00eatre unique \u00e0 l'\u00e9chelle de l'UE associ\u00e9e.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Label mobilier", +        "importer_type": 20, +        "export_field_name": "label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 340 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Identifiant pr\u00e9c\u00e9dent, li\u00e9 \u00e0 une base de donn\u00e9e ou un autre mode d'enregistrement. Exemple : \"400.01.05\", \"Beau biface\", \"inv. 4523\", \"Iso.4220\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Identifiant pr\u00e9c\u00e9dent", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 341 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Description du mobilier, objet ou lot. Exemple : \"Fibule aviforme\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 342 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "R\u00e9f\u00e9rence du point topo, d'ordinaire un entier mais peut \u00eatre autre chose. Champ texte, max. 120 caract\u00e8res. Exemple : \"7220\", \"pt. 72\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Ref. point topo", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 343 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "D\u00e9finit si on enregistre ici un objet seul (parfois appel\u00e9 Isolation) ou un lot d'objets. Exemple : \"lot\", \"objet\", \"Iso\", \"vrac\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Lot ou objet", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 344 +}, +{ +    "fields": { +        "col_number": 10, +        "description": "D\u00e9finit si un objet est complet ou non. Exemple : \"complet\", \"est complet\", \"incomplet\".\r\nEst ici traduit en binaire : \"complet\" (vrai) ou \"incomplet\" (faux). ", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Compl\u00e9tude", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 345 +}, +{ +    "fields": { +        "col_number": 11, +        "description": "Type(s) de mat\u00e9riau(x) s\u00e9par\u00e9s par des \"&\". Exemple : \"m\u00e9tal & os\", \"LT\", \"Min\u00e9ral\", \"Granito\u00efde & Basalte & Ardoise\".", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Mat\u00e9riau(x)", +        "importer_type": 20, +        "export_field_name": "material_types__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 346 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "\u00c9tat de conservation. Exemple : \"Instable\", \"Stable\", \"Inconnu\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "\u00c9tat de conservation", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 347 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "Commentaire relatif \u00e0 la conservation. Exemple : \"Devrait \u00eatre conserv\u00e9 dans une chambre climatis\u00e9e\", \"Ne sera plus qu'une poudre, si on ne s'en occupe pas sous peu\", \" \u00e0 jeter\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire conservation", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 348 +}, +{ +    "fields": { +        "col_number": 14, +        "description": "Type(s) d'objet(s), s\u00e9par\u00e9s par des \"&\". Exemple : \"tesson & charbon\", \"os & m\u00e9tal\", \"faune\", \"fibule & bague\", \"lame & lamelle\", \"\u00e9clat & nucl\u00e9us\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type(s) d'objet(s)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 349 +}, +{ +    "fields": { +        "col_number": 15, +        "description": "Type(s) d'actions de conservation \u00e0 mener, s\u00e9par\u00e9s par des \"&\". Exemple : \"\u00c0 restaurer\", \"reconditionnement\", \"\u00c0 reconditionner & \u00e0 stabiliser\"", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type(s) d'actions de conservation \u00e0 mener", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 350 +}, +{ +    "fields": { +        "col_number": 16, +        "description": "Type(s) d'int\u00e9r\u00eat scientifique ou d'int\u00e9grit\u00e9, s\u00e9par\u00e9s par des \"&\". Exemple : \"Arch\u00e9ologiquement complet\", \"absent\", \"perdu\", etc.\r\nPeut \u00e9galement qualifier (selon votre usage) des qualit\u00e9s de fragmentation : \"proximal\", \"distal\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type(s) d'int\u00e9grit\u00e9(s) et/ou int\u00e9r\u00eat(s)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 351 +}, +{ +    "fields": { +        "col_number": 17, +        "description": "Type(s) de remarquabilit\u00e9(s), s\u00e9par\u00e9s par des \"&\". Exemple : \"Mus\u00e9e\", \"Publication\", \"Tessonier & Publication\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type(s) de remarqualibit\u00e9(s)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 352 +}, +{ +    "fields": { +        "col_number": 18, +        "description": "Longueur en cm (nombre d\u00e9cimal).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Longueur (cm)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 353 +}, +{ +    "fields": { +        "col_number": 19, +        "description": "Largeur en cm (nombre d\u00e9cimal).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Largeur (cm)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 354 +}, +{ +    "fields": { +        "col_number": 20, +        "description": "Hauteur en cm (nombre d\u00e9cimal).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Hauteur (cm)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 355 +}, +{ +    "fields": { +        "col_number": 21, +        "description": "Diam\u00e8tre en cm (nombre d\u00e9cimal).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Diam\u00e8tre (cm)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 356 +}, +{ +    "fields": { +        "col_number": 22, +        "description": "Commentaire permettant de donner des pr\u00e9cisions (ou d'importer des donn\u00e9es mixtes). Exemple : \"18 x 12 x 5\", \"col de 43 mm\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire / Pr\u00e9cisions sur les dimensions ", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 357 +}, +{ +    "fields": { +        "col_number": 24, +        "description": "Nombre d'objet(s) li\u00e9(s) \u00e0 cet enregistrement (entier). Exemple : \"12\".\r\nAttention, ce champ n'est pas contraint par l'information de type OBJET/LOT (colonne n\u00b09).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Nombre", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 358 +}, +{ +    "fields": { +        "col_number": 25, +        "description": "Marquage visible sur le mobilier. Exemple : \"id1234 la Roche aux F\u00e9es\", \"MTX-45\", etc.\r\nCeci reproduit d'ordinaire un marquage r\u00e9alis\u00e9 par un arch\u00e9ologue. Il ne s'agit pas ici de reproduire une \u00e9pigraphie ou tout autre inscription arch\u00e9ologique (graffito, d\u00e9dicaces, defixio, etc.) , mais vous pouvez l'utiliser pour cela si vous n'avez pas \u00e0 utiliser de marquage arch\u00e9ologique.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Marque", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 359 +}, +{ +    "fields": { +        "col_number": 26, +        "description": "Commentaire g\u00e9n\u00e9ral libre. Exemple : \"habillage en nid d'abeille, poli g\u00e9n\u00e9ralis\u00e9, encoche emmanchement lat\u00e9ral ouvert sur la face sup\u00e9rieure\", \"1 bord + bec tubulaire\", \"fibule de Langton Down\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire g\u00e9n\u00e9ral", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 360 +}, +{ +    "fields": { +        "col_number": 27, +        "description": "Commentaire g\u00e9n\u00e9ral sur les datations, si besoin. Exemple : \"plut\u00f4t fin IIe s. ou d\u00e9but IIIe s.\", \"Datation \u00e0 pr\u00e9ciser avant publication\", \" Datation rapide faite par M. Dupont\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire g\u00e9n\u00e9ral sur les datations", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 361 +}, +{ +    "fields": { +        "col_number": 28, +        "description": "Valeur estim\u00e9e (\u20ac), sous la forme d'un nombre d\u00e9cimal. Exemple : \"4500\", \"0.2\", etc.\r\nUtile essentiellement pour les probl\u00e8mes de partage, vente, assurance etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Valeur estim\u00e9e", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 362 +}, +{ +    "fields": { +        "col_number": 29, +        "description": "Nom exact du fichier image, sous la forme XXXXX.jpg.\r\nAttention au respect strict des caract\u00e8res et majuscules lors d'un import de ce type, \".JPG\" ou \"*.jpg\", etc.\r\nExemple : \"P1030831.JPG\", \"IMG_6485.JPG\", \"fibule.jpg\", etc.\r\nLors de l'import il faut ajouter ces images sous la forme d'un fichier zip (joint au csv import\u00e9) pour que les images soient automatiquement int\u00e9gr\u00e9es.\r\n", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Image", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 363 +}, +{ +    "fields": { +        "col_number": 30, +        "description": "Chronologies associ\u00e9es (plusieurs possibles s\u00e9par\u00e9es par &). Exemple : \"Gallo-romain & M\u00e9di\u00e9val\", \"GR&MED\", \"M\u00e9solithique final & M\u00e9so moyen & Epipal\", etc.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "P\u00e9riodes", +        "importer_type": 20, +        "export_field_name": "datings__period__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 364 +}, +{ +    "fields": { +        "col_number": 31, +        "description": "Coordonn\u00e9e X pour cet objet.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Coordonn\u00e9e X", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 365 +}, +{ +    "fields": { +        "col_number": 32, +        "description": "Coordonn\u00e9e Y pour cet objet.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Coordonn\u00e9e Y", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 366 +}, +{ +    "fields": { +        "col_number": 33, +        "description": "Coordonn\u00e9e Z pour cet objet (altitude NGF ou arbitraire).", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Coordonn\u00e9e Z", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 367 +}, +{ +    "fields": { +        "col_number": 34, +        "description": "Code permettant de qualifier le mode de projection des donn\u00e9es (SRS /EPSG). Exemple : \"2154\" pour le Lambert 93.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Syst\u00e8me de r\u00e9f\u00e9rence spatiale", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 368 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "UE (identifiant externe) - membre de gauche", +        "importer_type": 21, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 369 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Type de relation entre UE", +        "importer_type": 21, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 370 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "UE (identifiant externe) - membre de droite", +        "importer_type": 21, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 371 +}, +{ +    "fields": { +        "col_number": 23, +        "description": "Poids en grammes.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Poids (g)", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 372 +}, +{ +    "fields": { +        "col_number": 35, +        "description": "Identifiant textuel du d\u00e9p\u00f4t. Cet identifiant doit correspondre \u00e0 un d\u00e9p\u00f4t existant en base de donn\u00e9es.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Identifiant d\u00e9p\u00f4t", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 373 +}, +{ +    "fields": { +        "col_number": 36, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "R\u00e9f\u00e9rence de caisse", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 374 +}, +{ +    "fields": { +        "col_number": 37, +        "description": "Champ n\u00e9cessaire si vous indiquez une caisse", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Type de caisse", +        "importer_type": 20, +        "export_field_name": null +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 375 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code UNIQUE pour une op\u00e9ration (par exemple : code PATRIARCHE)", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code op\u00e9ration", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 376 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Titre du document (max. 300 caract\u00e8res)", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Titre", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 377 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Type de document", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 378 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Num\u00e9ro unique par op\u00e9ration", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Index (num\u00e9ro par op\u00e9ration)", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 379 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "R\u00e9f\u00e9rence libre (max. 100 caract\u00e8res)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "R\u00e9f\u00e9rence", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 380 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "R\u00e9f\u00e9rence interne libre (max. 100 caract\u00e8res)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "R\u00e9f\u00e9rence interne", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 381 +}, +{ +    "fields": { +        "col_number": 7, +        "description": "Adresse web compl\u00e8te (avec la partie http:// ou https://)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Adresse web associ\u00e9e", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 382 +}, +{ +    "fields": { +        "col_number": 8, +        "description": "Date de r\u00e9ception (format JJ/MM/AAAA ou AAAA-MM-JJ)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de r\u00e9ception", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 383 +}, +{ +    "fields": { +        "col_number": 9, +        "description": "Date de cr\u00e9ation (format JJ/MM/AAAA ou AAAA-MM-JJ)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de cr\u00e9ation", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 384 +}, +{ +    "fields": { +        "col_number": 10, +        "description": "Date de r\u00e9ception en documentation (format JJ/MM/AAAA ou AAAA-MM-JJ)", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Date de r\u00e9ception en documentation", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 385 +}, +{ +    "fields": { +        "col_number": 11, +        "description": "Texte libre", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Commentaire", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 386 +}, +{ +    "fields": { +        "col_number": 12, +        "description": "Texte libre", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Description", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 387 +}, +{ +    "fields": { +        "col_number": 13, +        "description": "Texte libre", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Information suppl\u00e9mentaire", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 388 +}, +{ +    "fields": { +        "col_number": 15, +        "description": "Nom (en casse haute) suivi du pr\u00e9nom de l'auteur (maximum 300 caract\u00e8res). Exemple : DUPONT Jean.", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Auteur principal", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 389 +}, +{ +    "fields": { +        "col_number": 14, +        "description": "", +        "regexp_pre_filter": null, +        "required": false, +        "label": "Existe en doublon", +        "importer_type": 22, +        "export_field_name": "" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 390 +}, +{ +    "fields": { +        "col_number": 1, +        "description": "Code PATRIARCHE ou code num\u00e9rique (entier) UNIQUE pour une op\u00e9ration.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Code op\u00e9ration", +        "importer_type": 23, +        "export_field_name": "base_finds__context_record__operation__code_patriarche" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 391 +}, +{ +    "fields": { +        "col_number": 2, +        "description": "Commune (via num\u00e9ro INSEE).", +        "regexp_pre_filter": null, +        "required": true, +        "label": "INSEE", +        "importer_type": 23, +        "export_field_name": "base_finds__context_record__parcel__town__numero_insee" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 392 +}, +{ +    "fields": { +        "col_number": 3, +        "description": "Section (identifiant externe), soit des lettres formant la section . Exemple : \"ZA\".", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Section de parcellaire", +        "importer_type": 23, +        "export_field_name": "base_finds__context_record__parcel__section" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 393 +}, +{ +    "fields": { +        "col_number": 4, +        "description": "Num\u00e9ro de la parcelle, soit des chiffres sans espaces. Exemple : \"253\".", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Num\u00e9ro de parcelle", +        "importer_type": 23, +        "export_field_name": "base_finds__context_record__parcel__parcel_number" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 394 +}, +{ +    "fields": { +        "col_number": 5, +        "description": "Label / Identifiant (externe) de l'UE. Exemple : \"US 145\", \"Tranch\u00e9e 145\", \"145\", \"St 17\", etc. Doit \u00eatre unique pour une parcelle donn\u00e9e.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Label UE", +        "importer_type": 23, +        "export_field_name": "base_finds__context_record__label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 395 +}, +{ +    "fields": { +        "col_number": 6, +        "description": "Identifiant libre pour le mobilier. Exemple : \"12\", \"Lot 24\", \"Sac vert\", etc.\r\nDoit \u00eatre unique \u00e0 l'\u00e9chelle de l'UE associ\u00e9e.", +        "regexp_pre_filter": null, +        "required": true, +        "label": "Label mobilier", +        "importer_type": 23, +        "export_field_name": "label" +    }, +    "model": "ishtar_common.importercolumn", +    "pk": 396 +}, +{ +    "fields": { +        "comment": null, +        "target": "code_patriarche", +        "column": 1, +        "formater_type": 1, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 1 +}, +{ +    "fields": { +        "comment": null, +        "target": "operation_type", +        "column": 2, +        "formater_type": 2, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 2 +}, +{ +    "fields": { +        "comment": null, +        "target": "common_name", +        "column": 3, +        "formater_type": 3, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 3 +}, +{ +    "fields": { +        "comment": null, +        "target": "operator__name", +        "column": 4, +        "formater_type": 3, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 4 +}, +{ +    "fields": { +        "comment": null, +        "target": "scientist__raw_name", +        "column": 5, +        "formater_type": 4, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 5 +}, +{ +    "fields": { +        "comment": null, +        "target": "start_date", +        "column": 6, +        "formater_type": 5, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 6 +}, +{ +    "fields": { +        "comment": null, +        "target": "excavation_end_date", +        "column": 7, +        "formater_type": 5, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 7 +}, +{ +    "fields": { +        "comment": null, +        "target": "periods", +        "column": 8, +        "formater_type": 6, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 8 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation__code_patriarche", +        "column": 9, +        "formater_type": 1, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 9 +}, +{ +    "fields": { +        "comment": null, +        "target": "town__numero_insee", +        "column": 12, +        "formater_type": 11, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 13 +}, +{ +    "fields": { +        "comment": null, +        "target": "address", +        "column": 13, +        "formater_type": 10, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 14 +}, +{ +    "fields": { +        "comment": null, +        "target": "operation__code_patriarche", +        "column": 14, +        "formater_type": 1, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 15 +}, +{ +    "fields": { +        "comment": null, +        "target": "external_id", +        "column": 15, +        "formater_type": 11, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 16 +}, +{ +    "fields": { +        "comment": null, +        "target": "source_type", +        "column": 16, +        "formater_type": 12, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 17 +}, +{ +    "fields": { +        "comment": null, +        "target": "support_type", +        "column": 17, +        "formater_type": 13, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 18 +}, +{ +    "fields": { +        "comment": null, +        "target": "item_number", +        "column": 18, +        "formater_type": 1, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 19 +}, +{ +    "fields": { +        "comment": null, +        "target": "authors__person__raw_name", +        "column": 19, +        "formater_type": 4, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 20 +}, +{ +    "fields": { +        "comment": null, +        "target": "creation_date", +        "column": 20, +        "formater_type": 14, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 21 +}, +{ +    "fields": { +        "comment": null, +        "target": "format_type", +        "column": 21, +        "formater_type": 15, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 22 +}, +{ +    "fields": { +        "comment": null, +        "target": "description", +        "column": 22, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 23 +}, +{ +    "fields": { +        "comment": null, +        "target": "comment", +        "column": 23, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 24 +}, +{ +    "fields": { +        "comment": null, +        "target": "scale", +        "column": 24, +        "formater_type": 17, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 25 +}, +{ +    "fields": { +        "comment": null, +        "target": "additional_information", +        "column": 25, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 26 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation__code_patriarche", +        "column": 26, +        "formater_type": 1, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 27 +}, +{ +    "fields": { +        "comment": "", +        "target": "label", +        "column": 27, +        "formater_type": 3, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 28 +}, +{ +    "fields": { +        "comment": null, +        "target": "unit", +        "column": 28, +        "formater_type": 18, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 29 +}, +{ +    "fields": { +        "comment": null, +        "target": "description", +        "column": 29, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 30 +}, +{ +    "fields": { +        "comment": null, +        "target": "identification", +        "column": 30, +        "formater_type": 24, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 31 +}, +{ +    "fields": { +        "comment": null, +        "target": "opening_date", +        "column": 31, +        "formater_type": 5, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 32 +}, +{ +    "fields": { +        "comment": null, +        "target": "closing_date", +        "column": 32, +        "formater_type": 5, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 33 +}, +{ +    "fields": { +        "comment": "", +        "target": "parcel__external_id", +        "column": 33, +        "formater_type": 11, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 34 +}, +{ +    "fields": { +        "comment": null, +        "target": "comment", +        "column": 34, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 35 +}, +{ +    "fields": { +        "comment": null, +        "target": "datings__period", +        "column": 35, +        "formater_type": 6, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": true +    }, +    "model": "ishtar_common.importtarget", +    "pk": 36 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 36, +        "formater_type": 11, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 37 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__label", +        "column": 37, +        "formater_type": 3, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 38 +}, +{ +    "fields": { +        "comment": null, +        "target": "material_types", +        "column": 39, +        "formater_type": 20, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 40 +}, +{ +    "fields": { +        "comment": null, +        "target": "find_number", +        "column": 40, +        "formater_type": 1, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 41 +}, +{ +    "fields": { +        "comment": null, +        "target": "weight", +        "column": 41, +        "formater_type": 21, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 42 +}, +{ +    "fields": { +        "comment": null, +        "target": "weight_unit", +        "column": 42, +        "formater_type": 7, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 43 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 43, +        "formater_type": 3, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 44 +}, +{ +    "fields": { +        "comment": null, +        "target": "base_finds__discovery_date", +        "column": 44, +        "formater_type": 5, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 45 +}, +{ +    "fields": { +        "comment": null, +        "target": "conservatory_state", +        "column": 45, +        "formater_type": 22, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 46 +}, +{ +    "fields": { +        "comment": "", +        "target": "preservation_to_considers", +        "column": 46, +        "formater_type": 23, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 47 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__comment", +        "column": 47, +        "formater_type": 35, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 48 +}, +{ +    "fields": { +        "comment": null, +        "target": "base_finds__topographic_localisation", +        "column": 48, +        "formater_type": 3, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 49 +}, +{ +    "fields": { +        "comment": null, +        "target": "base_finds__special_interest", +        "column": 49, +        "formater_type": 3, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 50 +}, +{ +    "fields": { +        "comment": null, +        "target": "base_finds__description", +        "column": 50, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 51 +}, +{ +    "fields": { +        "comment": null, +        "target": "parcel_number", +        "column": 51, +        "formater_type": 8, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 53 +}, +{ +    "fields": { +        "comment": null, +        "target": "section", +        "column": 52, +        "formater_type": 7, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 54 +}, +{ +    "fields": { +        "comment": "", +        "target": "external_id", +        "column": 53, +        "formater_type": 11, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 55 +}, +{ +    "fields": { +        "comment": null, +        "target": "year", +        "column": 11, +        "formater_type": 14, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 56 +}, +{ +    "fields": { +        "comment": null, +        "target": "interpretation", +        "column": 54, +        "formater_type": 16, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 57 +}, +{ +    "fields": { +        "comment": "", +        "target": "parcel__external_id", +        "column": 225, +        "formater_type": 28, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 250 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 226, +        "formater_type": 35, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 251 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 227, +        "formater_type": 28, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 252 +}, +{ +    "fields": { +        "comment": "", +        "target": "datings__period", +        "column": 228, +        "formater_type": 6, +        "concat_str": null, +        "regexp_filter": null, +        "concat": false, +        "force_new": true +    }, +    "model": "ishtar_common.importtarget", +    "pk": 253 +}, +{ +    "fields": { +        "comment": "", +        "target": "label", +        "column": 229, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 254 +}, +{ +    "fields": { +        "comment": "", +        "target": "code_patriarche", +        "column": 265, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 290 +}, +{ +    "fields": { +        "comment": "", +        "target": "common_name", +        "column": 266, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 291 +}, +{ +    "fields": { +        "comment": "", +        "target": "year", +        "column": 267, +        "formater_type": 14, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 292 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation_code", +        "column": 268, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 293 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation_type", +        "column": 269, +        "formater_type": 2, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 294 +}, +{ +    "fields": { +        "comment": "", +        "target": "associated_file__external_id", +        "column": 270, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 295 +}, +{ +    "fields": { +        "comment": "", +        "target": "periods", +        "column": 273, +        "formater_type": 6, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 296 +}, +{ +    "fields": { +        "comment": "", +        "target": "archaeological_sites__reference", +        "column": 271, +        "formater_type": 45, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 297 +}, +{ +    "fields": { +        "comment": "", +        "target": "scientist__title", +        "column": 274, +        "formater_type": 47, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 298 +}, +{ +    "fields": { +        "comment": "", +        "target": "scientist__surname", +        "column": 275, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 299 +}, +{ +    "fields": { +        "comment": "", +        "target": "scientist__name", +        "column": 276, +        "formater_type": 30, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 300 +}, +{ +    "fields": { +        "comment": "", +        "target": "scientist__attached_to__name", +        "column": 277, +        "formater_type": 30, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 301 +}, +{ +    "fields": { +        "comment": "", +        "target": "operator__name", +        "column": 278, +        "formater_type": 10, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 302 +}, +{ +    "fields": { +        "comment": "", +        "target": "operator_reference", +        "column": 279, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 303 +}, +{ +    "fields": { +        "comment": "", +        "target": "in_charge__title", +        "column": 280, +        "formater_type": 47, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 304 +}, +{ +    "fields": { +        "comment": "", +        "target": "in_charge__surname", +        "column": 281, +        "formater_type": 39, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 305 +}, +{ +    "fields": { +        "comment": "", +        "target": "in_charge__name", +        "column": 282, +        "formater_type": 30, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 306 +}, +{ +    "fields": { +        "comment": "", +        "target": "in_charge__attached_to__name", +        "column": 283, +        "formater_type": 10, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 307 +}, +{ +    "fields": { +        "comment": "", +        "target": "surface", +        "column": 284, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 308 +}, +{ +    "fields": { +        "comment": "", +        "target": "start_date", +        "column": 285, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 309 +}, +{ +    "fields": { +        "comment": "", +        "target": "excavation_end_date", +        "column": 286, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 310 +}, +{ +    "fields": { +        "comment": "", +        "target": "end_date", +        "column": 287, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 311 +}, +{ +    "fields": { +        "comment": "", +        "target": "cira_date", +        "column": 288, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 312 +}, +{ +    "fields": { +        "comment": "", +        "target": "negative_result", +        "column": 289, +        "formater_type": 19, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 313 +}, +{ +    "fields": { +        "comment": "", +        "target": "cira_rapporteur__surname", +        "column": 290, +        "formater_type": 39, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 314 +}, +{ +    "fields": { +        "comment": "", +        "target": "cira_rapporteur__name", +        "column": 291, +        "formater_type": 30, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 315 +}, +{ +    "fields": { +        "comment": "", +        "target": "cira_rapporteur__attached_to__name", +        "column": 292, +        "formater_type": 10, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 316 +}, +{ +    "fields": { +        "comment": "", +        "target": "documentation_deadline", +        "column": 293, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 317 +}, +{ +    "fields": { +        "comment": "", +        "target": "documentation_received", +        "column": 294, +        "formater_type": 19, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 318 +}, +{ +    "fields": { +        "comment": "", +        "target": "finds_deadline", +        "column": 295, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 319 +}, +{ +    "fields": { +        "comment": "", +        "target": "finds_received", +        "column": 296, +        "formater_type": 19, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 320 +}, +{ +    "fields": { +        "comment": "", +        "target": "comment", +        "column": 297, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 321 +}, +{ +    "fields": { +        "comment": "", +        "target": "report_delivery_date", +        "column": 298, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 322 +}, +{ +    "fields": { +        "comment": "", +        "target": "report_processing", +        "column": 299, +        "formater_type": 37, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 323 +}, +{ +    "fields": { +        "comment": "", +        "target": "scientific_documentation_comment", +        "column": 300, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 324 +}, +{ +    "fields": { +        "comment": "", +        "target": "image", +        "column": 301, +        "formater_type": 27, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 325 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation__code_patriarche", +        "column": 302, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 326 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation__code_patriarche", +        "column": 303, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 327 +}, +{ +    "fields": { +        "comment": "", +        "target": "town__numero_insee", +        "column": 304, +        "formater_type": 11, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 328 +}, +{ +    "fields": { +        "comment": "", +        "target": "external_id", +        "column": 305, +        "formater_type": 11, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 329 +}, +{ +    "fields": { +        "comment": "", +        "target": "section", +        "column": 306, +        "formater_type": 7, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 330 +}, +{ +    "fields": { +        "comment": "", +        "target": "parcel_number", +        "column": 307, +        "formater_type": 8, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 331 +}, +{ +    "fields": { +        "comment": "", +        "target": "year", +        "column": 308, +        "formater_type": 14, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 332 +}, +{ +    "fields": { +        "comment": "", +        "target": "address", +        "column": 309, +        "formater_type": 10, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 333 +}, +{ +    "fields": { +        "comment": "", +        "target": "public_domain", +        "column": 310, +        "formater_type": 19, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 334 +}, +{ +    "fields": { +        "comment": "", +        "target": "parcel__external_id", +        "column": 311, +        "formater_type": 28, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 335 +}, +{ +    "fields": { +        "comment": "", +        "target": "parcel__external_id", +        "column": 312, +        "formater_type": 11, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 336 +}, +{ +    "fields": { +        "comment": "", +        "target": "parcel__year", +        "column": 313, +        "formater_type": 14, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 337 +}, +{ +    "fields": { +        "comment": "", +        "target": "remains", +        "column": 272, +        "formater_type": 41, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 338 +}, +{ +    "fields": { +        "comment": "", +        "target": "label", +        "column": 314, +        "formater_type": 30, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 339 +}, +{ +    "fields": { +        "comment": "", +        "target": "unit", +        "column": 315, +        "formater_type": 18, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 340 +}, +{ +    "fields": { +        "comment": "", +        "target": "description", +        "column": 316, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 341 +}, +{ +    "fields": { +        "comment": "", +        "target": "comment", +        "column": 317, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 342 +}, +{ +    "fields": { +        "comment": "", +        "target": "length", +        "column": 318, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 343 +}, +{ +    "fields": { +        "comment": "", +        "target": "width", +        "column": 319, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 344 +}, +{ +    "fields": { +        "comment": "", +        "target": "thickness", +        "column": 320, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 345 +}, +{ +    "fields": { +        "comment": "", +        "target": "depth", +        "column": 321, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 346 +}, +{ +    "fields": { +        "comment": "", +        "target": "location", +        "column": 322, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 347 +}, +{ +    "fields": { +        "comment": "", +        "target": "documentations", +        "column": 323, +        "formater_type": 52, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 348 +}, +{ +    "fields": { +        "comment": "", +        "target": "image", +        "column": 324, +        "formater_type": 27, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 349 +}, +{ +    "fields": { +        "comment": "", +        "target": "datings__period", +        "column": 325, +        "formater_type": 6, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": true +    }, +    "model": "ishtar_common.importtarget", +    "pk": 350 +}, +{ +    "fields": { +        "comment": "", +        "target": "datings_comment", +        "column": 326, +        "formater_type": 16, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 351 +}, +{ +    "fields": { +        "comment": "", +        "target": "filling", +        "column": 327, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 352 +}, +{ +    "fields": { +        "comment": "", +        "target": "interpretation", +        "column": 328, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 353 +}, +{ +    "fields": { +        "comment": "", +        "target": "activity", +        "column": 329, +        "formater_type": 42, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 354 +}, +{ +    "fields": { +        "comment": "", +        "target": "identification", +        "column": 330, +        "formater_type": 24, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 355 +}, +{ +    "fields": { +        "comment": "", +        "target": "taq", +        "column": 331, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 356 +}, +{ +    "fields": { +        "comment": "", +        "target": "tpq", +        "column": 332, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 357 +}, +{ +    "fields": { +        "comment": "", +        "target": "taq_estimated", +        "column": 333, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 358 +}, +{ +    "fields": { +        "comment": "", +        "target": "tpq_estimated", +        "column": 334, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 359 +}, +{ +    "fields": { +        "comment": "", +        "target": "old_code", +        "column": 335, +        "formater_type": 30, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 360 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 336, +        "formater_type": 11, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 361 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 337, +        "formater_type": 28, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 362 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 338, +        "formater_type": 35, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 363 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 339, +        "formater_type": 3, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 364 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__label", +        "column": 340, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 365 +}, +{ +    "fields": { +        "comment": "", +        "target": "previous_id", +        "column": 341, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 366 +}, +{ +    "fields": { +        "comment": "", +        "target": "description", +        "column": 342, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 367 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__batch", +        "column": 344, +        "formater_type": 48, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 368 +}, +{ +    "fields": { +        "comment": "", +        "target": "is_complete", +        "column": 345, +        "formater_type": 19, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 369 +}, +{ +    "fields": { +        "comment": "", +        "target": "material_types", +        "column": 346, +        "formater_type": 20, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 370 +}, +{ +    "fields": { +        "comment": "", +        "target": "conservatory_state", +        "column": 347, +        "formater_type": 22, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 371 +}, +{ +    "fields": { +        "comment": "", +        "target": "conservatory_comment", +        "column": 348, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 372 +}, +{ +    "fields": { +        "comment": "", +        "target": "object_types", +        "column": 349, +        "formater_type": 26, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 373 +}, +{ +    "fields": { +        "comment": "", +        "target": "preservation_to_considers", +        "column": 350, +        "formater_type": 23, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 374 +}, +{ +    "fields": { +        "comment": "", +        "target": "integrities", +        "column": 351, +        "formater_type": 43, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 375 +}, +{ +    "fields": { +        "comment": "", +        "target": "remarkabilities", +        "column": 352, +        "formater_type": 44, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 376 +}, +{ +    "fields": { +        "comment": "", +        "target": "length", +        "column": 353, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 377 +}, +{ +    "fields": { +        "comment": "", +        "target": "width", +        "column": 354, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 378 +}, +{ +    "fields": { +        "comment": "", +        "target": "height", +        "column": 355, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 379 +}, +{ +    "fields": { +        "comment": "", +        "target": "diameter", +        "column": 356, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 380 +}, +{ +    "fields": { +        "comment": "", +        "target": "dimensions_comment", +        "column": 357, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 381 +}, +{ +    "fields": { +        "comment": "", +        "target": "find_number", +        "column": 358, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 382 +}, +{ +    "fields": { +        "comment": "", +        "target": "mark", +        "column": 359, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 383 +}, +{ +    "fields": { +        "comment": "", +        "target": "comment", +        "column": 360, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 384 +}, +{ +    "fields": { +        "comment": "", +        "target": "dating_comment", +        "column": 361, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 385 +}, +{ +    "fields": { +        "comment": "", +        "target": "estimated_value", +        "column": 362, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 386 +}, +{ +    "fields": { +        "comment": "", +        "target": "image", +        "column": 363, +        "formater_type": 27, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 387 +}, +{ +    "fields": { +        "comment": "", +        "target": "datings__period", +        "column": 364, +        "formater_type": 6, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": true +    }, +    "model": "ishtar_common.importtarget", +    "pk": 388 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__topographic_localisation", +        "column": 343, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 389 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__x", +        "column": 365, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 390 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__y", +        "column": 366, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 391 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__z", +        "column": 367, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 392 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__spatial_reference_system", +        "column": 368, +        "formater_type": 46, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 393 +}, +{ +    "fields": { +        "comment": "", +        "target": "left_record__external_id", +        "column": 369, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 394 +}, +{ +    "fields": { +        "comment": "", +        "target": "relation_type", +        "column": 370, +        "formater_type": 49, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 395 +}, +{ +    "fields": { +        "comment": "", +        "target": "right_record__external_id", +        "column": 371, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 396 +}, +{ +    "fields": { +        "comment": "", +        "target": "weight", +        "column": 372, +        "formater_type": 21, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 397 +}, +{ +    "fields": { +        "comment": "", +        "target": "container__responsible__external_id", +        "column": 373, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 398 +}, +{ +    "fields": { +        "comment": "", +        "target": "container__reference", +        "column": 374, +        "formater_type": 17, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 399 +}, +{ +    "fields": { +        "comment": "", +        "target": "container__container_type", +        "column": 375, +        "formater_type": 50, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 400 +}, +{ +    "fields": { +        "comment": "", +        "target": "operation__code_patriarche", +        "column": 376, +        "formater_type": 35, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 401 +}, +{ +    "fields": { +        "comment": "", +        "target": "title", +        "column": 377, +        "formater_type": 4, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 402 +}, +{ +    "fields": { +        "comment": "", +        "target": "source_type", +        "column": 378, +        "formater_type": 12, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 403 +}, +{ +    "fields": { +        "comment": "", +        "target": "index", +        "column": 379, +        "formater_type": 1, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 404 +}, +{ +    "fields": { +        "comment": "", +        "target": "reference", +        "column": 380, +        "formater_type": 51, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 405 +}, +{ +    "fields": { +        "comment": "", +        "target": "internal_reference", +        "column": 381, +        "formater_type": 51, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 406 +}, +{ +    "fields": { +        "comment": "", +        "target": "associated_url", +        "column": 382, +        "formater_type": 4, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 407 +}, +{ +    "fields": { +        "comment": "", +        "target": "receipt_date", +        "column": 383, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 408 +}, +{ +    "fields": { +        "comment": "", +        "target": "creation_date", +        "column": 384, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 409 +}, +{ +    "fields": { +        "comment": "", +        "target": "receipt_date_in_documentation", +        "column": 385, +        "formater_type": 25, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 410 +}, +{ +    "fields": { +        "comment": "", +        "target": "comment", +        "column": 386, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 411 +}, +{ +    "fields": { +        "comment": "", +        "target": "description", +        "column": 387, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 412 +}, +{ +    "fields": { +        "comment": "", +        "target": "additional_information", +        "column": 388, +        "formater_type": 35, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 413 +}, +{ +    "fields": { +        "comment": "", +        "target": "authors__person__raw_name", +        "column": 389, +        "formater_type": 4, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 414 +}, +{ +    "fields": { +        "comment": "", +        "target": "duplicate", +        "column": 390, +        "formater_type": 19, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 415 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 391, +        "formater_type": 11, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 416 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 392, +        "formater_type": 28, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 417 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 393, +        "formater_type": 35, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 418 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 394, +        "formater_type": 35, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 419 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__external_id", +        "column": 395, +        "formater_type": 3, +        "concat_str": "-", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 420 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__label", +        "column": 396, +        "formater_type": 3, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 421 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__parcel__town__numero_insee", +        "column": 392, +        "formater_type": 11, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 422 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__parcel__section", +        "column": 393, +        "formater_type": 7, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 423 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__parcel__parcel_number", +        "column": 394, +        "formater_type": 8, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 424 +}, +{ +    "fields": { +        "comment": "", +        "target": "base_finds__context_record__parcel__town__numero_insee", +        "column": 337, +        "formater_type": 28, +        "concat_str": "", +        "regexp_filter": null, +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importtarget", +    "pk": 425 +}, +{ +    "fields": { +        "formater_type": "IntegerFormater", +        "many_split": "", +        "options": "" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 1 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_operations.models.OperationType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 2 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "120" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 3 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "300" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 4 +}, +{ +    "fields": { +        "formater_type": "DateFormater", +        "many_split": "", +        "options": "%Y/%m/%d" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 5 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "&", +        "options": "archaeological_operations.models.Period" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 6 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "4" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 7 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "6" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 8 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "500" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 10 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "12" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 11 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "SourceType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 12 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "SupportType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 13 +}, +{ +    "fields": { +        "formater_type": "YearFormater", +        "many_split": "", +        "options": "%Y" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 14 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "Format" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 15 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "1000" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 16 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "30" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 17 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_context_records.models.Unit" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 18 +}, +{ +    "fields": { +        "formater_type": "StrToBoolean", +        "many_split": "", +        "options": "" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 19 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "&", +        "options": "archaeological_finds.models.MaterialType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 20 +}, +{ +    "fields": { +        "formater_type": "FloatFormater", +        "many_split": "", +        "options": "" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 21 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_finds.models.ConservatoryState" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 22 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_finds.models.PreservationType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 23 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_context_records.models.IdentificationType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 24 +}, +{ +    "fields": { +        "formater_type": "DateFormater", +        "many_split": " | ", +        "options": "%d/%m/%Y | %Y-%m-%d" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 25 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_finds.models.ObjectType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 26 +}, +{ +    "fields": { +        "formater_type": "FileFormater", +        "many_split": "", +        "options": "" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 27 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "5" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 28 +}, +{ +    "fields": { +        "formater_type": "UnknowType", +        "many_split": "", +        "options": "" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 29 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "200" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 30 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "70" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 31 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_files.models.SaisineType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 32 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "2000" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 33 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_files.models.PermitType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 34 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 35 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "60" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 36 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_operations.models.ReportState" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 37 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "10" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 38 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "50" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 39 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "&", +        "options": "archaeological_operations.models.RemainType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 41 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_context_records.models.ActivityType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 42 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "&", +        "options": "archaeological_finds.models.IntegrityType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 43 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "&", +        "options": "archaeological_finds.models.RemarkabilityType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 44 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "20" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 45 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "SpatialReferenceSystem" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 46 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "TitleType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 47 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_finds.models.BatchType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 48 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_context_records.models.RelationType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 49 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "", +        "options": "archaeological_warehouse.models.ContainerType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 50 +}, +{ +    "fields": { +        "formater_type": "UnicodeFormater", +        "many_split": "", +        "options": "100" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 51 +}, +{ +    "fields": { +        "formater_type": "TypeFormater", +        "many_split": "&", +        "options": "archaeological_context_records.models.DocumentationType" +    }, +    "model": "ishtar_common.formatertype", +    "pk": 52 +}, +{ +    "fields": { +        "column": 37, +        "concat_str": null, +        "field_name": "label", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 1 +}, +{ +    "fields": { +        "column": 37, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 3 +}, +{ +    "fields": { +        "column": 5, +        "concat_str": null, +        "field_name": "scientist__name", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 5 +}, +{ +    "fields": { +        "column": 27, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 6 +}, +{ +    "fields": { +        "column": 9, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 15 +}, +{ +    "fields": { +        "column": 12, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 16 +}, +{ +    "fields": { +        "column": 26, +        "concat_str": "-", +        "field_name": "parcel__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 17 +}, +{ +    "fields": { +        "column": 26, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 18 +}, +{ +    "fields": { +        "column": 225, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 19 +}, +{ +    "fields": { +        "column": 33, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 20 +}, +{ +    "fields": { +        "column": 36, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 21 +}, +{ +    "fields": { +        "column": 227, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 22 +}, +{ +    "fields": { +        "column": 226, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 23 +}, +{ +    "fields": { +        "column": 43, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 24 +}, +{ +    "fields": { +        "column": 37, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 25 +}, +{ +    "fields": { +        "column": 43, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 26 +}, +{ +    "fields": { +        "column": 226, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 27 +}, +{ +    "fields": { +        "column": 227, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 28 +}, +{ +    "fields": { +        "column": 36, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 29 +}, +{ +    "fields": { +        "column": 302, +        "concat_str": "-", +        "field_name": "parcel__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 31 +}, +{ +    "fields": { +        "column": 302, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 32 +}, +{ +    "fields": { +        "column": 304, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 33 +}, +{ +    "fields": { +        "column": 303, +        "concat_str": "", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 34 +}, +{ +    "fields": { +        "column": 311, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 35 +}, +{ +    "fields": { +        "column": 312, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 36 +}, +{ +    "fields": { +        "column": 314, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 37 +}, +{ +    "fields": { +        "column": 336, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 38 +}, +{ +    "fields": { +        "column": 336, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 39 +}, +{ +    "fields": { +        "column": 337, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 40 +}, +{ +    "fields": { +        "column": 337, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 41 +}, +{ +    "fields": { +        "column": 338, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 42 +}, +{ +    "fields": { +        "column": 338, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 43 +}, +{ +    "fields": { +        "column": 339, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 44 +}, +{ +    "fields": { +        "column": 339, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 45 +}, +{ +    "fields": { +        "column": 340, +        "concat_str": "", +        "field_name": "label", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 46 +}, +{ +    "fields": { +        "column": 340, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 47 +}, +{ +    "fields": { +        "column": 340, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 48 +}, +{ +    "fields": { +        "column": 373, +        "concat_str": "", +        "field_name": "container__location__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 49 +}, +{ +    "fields": { +        "column": 373, +        "concat_str": "", +        "field_name": "container__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 50 +}, +{ +    "fields": { +        "column": 374, +        "concat_str": "", +        "field_name": "container__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 51 +}, +{ +    "fields": { +        "column": 376, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 52 +}, +{ +    "fields": { +        "column": 379, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 53 +}, +{ +    "fields": { +        "column": 391, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 54 +}, +{ +    "fields": { +        "column": 391, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 55 +}, +{ +    "fields": { +        "column": 392, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 56 +}, +{ +    "fields": { +        "column": 392, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 57 +}, +{ +    "fields": { +        "column": 393, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 58 +}, +{ +    "fields": { +        "column": 393, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 59 +}, +{ +    "fields": { +        "column": 394, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 60 +}, +{ +    "fields": { +        "column": 394, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 61 +}, +{ +    "fields": { +        "column": 395, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 62 +}, +{ +    "fields": { +        "column": 395, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 63 +}, +{ +    "fields": { +        "column": 396, +        "concat_str": "", +        "field_name": "label", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 64 +}, +{ +    "fields": { +        "column": 396, +        "concat_str": "-", +        "field_name": "base_finds__external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 65 +}, +{ +    "fields": { +        "column": 396, +        "concat_str": "-", +        "field_name": "external_id", +        "concat": false, +        "force_new": false +    }, +    "model": "ishtar_common.importerduplicatefield", +    "pk": 66 +} +] diff --git a/ishtar_common/fixtures/initial_spatialrefsystem-fr.json b/ishtar_common/fixtures/initial_spatialrefsystem-fr.json index 99d16ea51..099186637 100644 --- a/ishtar_common/fixtures/initial_spatialrefsystem-fr.json +++ b/ishtar_common/fixtures/initial_spatialrefsystem-fr.json @@ -1,535 +1,535 @@  [ -    { -        "pk": 35,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "ETRS89 / LAEA Europe",  -            "auth_name": "EPSG",  -            "srid": 3035,  -            "order": 201,  -            "txt_idx": "laea-europe" -        } -    },  -    { -        "pk": 34,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "ETRS89 / LCC Europe",  -            "auth_name": "EPSG",  -            "srid": 3034,  -            "order": 200,  -            "txt_idx": "lcc-europe" -        } -    },  -    { -        "pk": 14,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert Centre France",  -            "auth_name": "EPSG",  -            "srid": 27562,  -            "order": 31,  -            "txt_idx": "lambert-centre-france" -        } -    },  -    { -        "pk": 16,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert Corse",  -            "auth_name": "EPSG",  -            "srid": 27564,  -            "order": 33,  -            "txt_idx": "lambert-corse" -        } -    },  -    { -        "pk": 13,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert Nord France",  -            "auth_name": "EPSG",  -            "srid": 27561,  -            "order": 30,  -            "txt_idx": "lambert-nord-france" -        } -    },  -    { -        "pk": 15,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert Sud France",  -            "auth_name": "EPSG",  -            "srid": 27563,  -            "order": 32,  -            "txt_idx": "lambert-sud-france" -        } -    },  -    { -        "pk": 17,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert zone I",  -            "auth_name": "EPSG",  -            "srid": 27571,  -            "order": 34,  -            "txt_idx": "lambert-zone-i" -        } -    },  -    { -        "pk": 19,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert zone III",  -            "auth_name": "EPSG",  -            "srid": 27573,  -            "order": 36,  -            "txt_idx": "lambert-zone-iii" -        } -    },  -    { -        "pk": 18,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert zone II (Lambert II \u00e9tendu)",  -            "auth_name": "EPSG",  -            "srid": 27572,  -            "order": 35,  -            "txt_idx": "lambert-zone-ii" -        } -    },  -    { -        "pk": 20,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "NTF (Paris) / Lambert zone IV",  -            "auth_name": "EPSG",  -            "srid": 27574,  -            "order": 37,  -            "txt_idx": "lambert-zone-iv" -        } -    },  -    { -        "pk": 4,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC42",  -            "auth_name": "EPSG",  -            "srid": 3942,  -            "order": 11,  -            "txt_idx": "lambert-cc42" -        } -    },  -    { -        "pk": 5,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC43",  -            "auth_name": "EPSG",  -            "srid": 3943,  -            "order": 12,  -            "txt_idx": "lambert-cc43" -        } -    },  -    { -        "pk": 6,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC44",  -            "auth_name": "EPSG",  -            "srid": 3944,  -            "order": 13,  -            "txt_idx": "lambert-cc44" -        } -    },  -    { -        "pk": 7,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC45",  -            "auth_name": "EPSG",  -            "srid": 3945,  -            "order": 14,  -            "txt_idx": "lambert-cc45" -        } -    },  -    { -        "pk": 8,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC46",  -            "auth_name": "EPSG",  -            "srid": 3946,  -            "order": 15,  -            "txt_idx": "lambert-cc46" -        } -    },  -    { -        "pk": 9,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC47",  -            "auth_name": "EPSG",  -            "srid": 3947,  -            "order": 16,  -            "txt_idx": "lambert-cc47" -        } -    },  -    { -        "pk": 10,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC48",  -            "auth_name": "EPSG",  -            "srid": 3948,  -            "order": 17,  -            "txt_idx": "lambert-cc48" -        } -    },  -    { -        "pk": 11,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC49",  -            "auth_name": "EPSG",  -            "srid": 3949,  -            "order": 18,  -            "txt_idx": "lambert-cc49" -        } -    },  -    { -        "pk": 12,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / CC50",  -            "auth_name": "EPSG",  -            "srid": 3950,  -            "order": 19,  -            "txt_idx": "lambert-cc50" -        } -    },  -    { -        "pk": 3,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGF93 / Lambert-93",  -            "auth_name": "EPSG",  -            "srid": 2154,  -            "order": 10,  -            "txt_idx": "lambert93" -        } -    },  -    { -        "pk": 37,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGFG95 / UTM zone 22N (Guyane)",  -            "auth_name": "EPSG",  -            "srid": 2972,  -            "order": 300,  -            "txt_idx": "utm-guyane" -        } -    },  -    { -        "pk": 40,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGM04 / UTM zone 38S (Mayotte)",  -            "auth_name": "EPSG",  -            "srid": 4471,  -            "order": 330,  -            "txt_idx": "utm-mayotte" -        } -    },  -    { -        "pk": 38,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGR92 / UTM zone 40S (La R\u00e9union)",  -            "auth_name": "EPSG",  -            "srid": 2975,  -            "order": 310,  -            "txt_idx": "utm-reunion" -        } -    },  -    { -        "pk": 39,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RGSPM06 / UTM 21N (St-Pierre-et-Miquelon)",  -            "auth_name": "EPSG",  -            "srid": 4467,  -            "order": 320,  -            "txt_idx": "utm-miquelon" -        } -    },  -    { -        "pk": 41,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "RRAF 1991 / UTM zone 20N (Guadeloupe et Martinique)",  -            "auth_name": "EPSG",  -            "srid": 4559,  -            "order": 340,  -            "txt_idx": "utm-guadeloupe" -        } -    },  -    { -        "pk": 2,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "Syst\u00e8me local (non r\u00e9f\u00e9renc\u00e9)",  -            "auth_name": "EPSG",  -            "srid": 0,  -            "order": 1,  -            "txt_idx": "local" -        } -    },  -    { -        "pk": 1,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS84 (lat-long)",  -            "auth_name": "EPSG",  -            "srid": 4326,  -            "order": 2,  -            "txt_idx": "wgs84" -        } -    },  -    { -        "pk": 21,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 28N",  -            "auth_name": "EPSG",  -            "srid": 32628,  -            "order": 128,  -            "txt_idx": "utm-28n" -        } -    },  -    { -        "pk": 22,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 29N",  -            "auth_name": "EPSG",  -            "srid": 32629,  -            "order": 129,  -            "txt_idx": "utm-29n" -        } -    },  -    { -        "pk": 23,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 30N",  -            "auth_name": "EPSG",  -            "srid": 32630,  -            "order": 130,  -            "txt_idx": "utm-30n" -        } -    },  -    { -        "pk": 24,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 31N",  -            "auth_name": "EPSG",  -            "srid": 32631,  -            "order": 131,  -            "txt_idx": "utm-31n" -        } -    },  -    { -        "pk": 25,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 32N",  -            "auth_name": "EPSG",  -            "srid": 32632,  -            "order": 132,  -            "txt_idx": "utm-32n" -        } -    },  -    { -        "pk": 26,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 33N",  -            "auth_name": "EPSG",  -            "srid": 32633,  -            "order": 133,  -            "txt_idx": "utm-33n" -        } -    },  -    { -        "pk": 27,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 34N",  -            "auth_name": "EPSG",  -            "srid": 32634,  -            "order": 134,  -            "txt_idx": "utm-34n" -        } -    },  -    { -        "pk": 28,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 35N",  -            "auth_name": "EPSG",  -            "srid": 32635,  -            "order": 135,  -            "txt_idx": "utm-35n" -        } -    },  -    { -        "pk": 29,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 36N",  -            "auth_name": "EPSG",  -            "srid": 32636,  -            "order": 136,  -            "txt_idx": "utm-36n" -        } -    },  -    { -        "pk": 30,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 37N",  -            "auth_name": "EPSG",  -            "srid": 32637,  -            "order": 137,  -            "txt_idx": "utm-37n" -        } -    },  -    { -        "pk": 31,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 38N",  -            "auth_name": "EPSG",  -            "srid": 32638,  -            "order": 138,  -            "txt_idx": "utm-38n" -        } -    },  -    { -        "pk": 32,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 39N",  -            "auth_name": "EPSG",  -            "srid": 32639,  -            "order": 139,  -            "txt_idx": "utm-39n" -        } -    },  -    { -        "pk": 33,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / UTM zone 40N",  -            "auth_name": "EPSG",  -            "srid": 32640,  -            "order": 140,  -            "txt_idx": "utm-40n" -        } -    },  -    { -        "pk": 36,  -        "model": "ishtar_common.spatialreferencesystem",  -        "fields": { -            "comment": "",  -            "available": true,  -            "label": "WGS 84 / World Mercator",  -            "auth_name": "EPSG",  -            "srid": 3395,  -            "order": 250,  -            "txt_idx": "wgs84-mercator" -        } -    } -]
\ No newline at end of file +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS84 (lat-long)", +        "auth_name": "EPSG", +        "srid": 4326, +        "order": 2, +        "txt_idx": "wgs84" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 1 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "Syst\u00e8me local (non r\u00e9f\u00e9renc\u00e9)", +        "auth_name": "EPSG", +        "srid": 0, +        "order": 1, +        "txt_idx": "local" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 2 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / Lambert-93", +        "auth_name": "EPSG", +        "srid": 2154, +        "order": 10, +        "txt_idx": "lambert93" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 3 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC42", +        "auth_name": "EPSG", +        "srid": 3942, +        "order": 11, +        "txt_idx": "lambert-cc42" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 4 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC43", +        "auth_name": "EPSG", +        "srid": 3943, +        "order": 12, +        "txt_idx": "lambert-cc43" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 5 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC44", +        "auth_name": "EPSG", +        "srid": 3944, +        "order": 13, +        "txt_idx": "lambert-cc44" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 6 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC45", +        "auth_name": "EPSG", +        "srid": 3945, +        "order": 14, +        "txt_idx": "lambert-cc45" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 7 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC46", +        "auth_name": "EPSG", +        "srid": 3946, +        "order": 15, +        "txt_idx": "lambert-cc46" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 8 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC47", +        "auth_name": "EPSG", +        "srid": 3947, +        "order": 16, +        "txt_idx": "lambert-cc47" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 9 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC48", +        "auth_name": "EPSG", +        "srid": 3948, +        "order": 17, +        "txt_idx": "lambert-cc48" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 10 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC49", +        "auth_name": "EPSG", +        "srid": 3949, +        "order": 18, +        "txt_idx": "lambert-cc49" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 11 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGF93 / CC50", +        "auth_name": "EPSG", +        "srid": 3950, +        "order": 19, +        "txt_idx": "lambert-cc50" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 12 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert Nord France", +        "auth_name": "EPSG", +        "srid": 27561, +        "order": 30, +        "txt_idx": "lambert-nord-france" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 13 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert Centre France", +        "auth_name": "EPSG", +        "srid": 27562, +        "order": 31, +        "txt_idx": "lambert-centre-france" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 14 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert Sud France", +        "auth_name": "EPSG", +        "srid": 27563, +        "order": 32, +        "txt_idx": "lambert-sud-france" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 15 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert Corse", +        "auth_name": "EPSG", +        "srid": 27564, +        "order": 33, +        "txt_idx": "lambert-corse" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 16 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert zone I", +        "auth_name": "EPSG", +        "srid": 27571, +        "order": 34, +        "txt_idx": "lambert-zone-i" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 17 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert zone II (Lambert II \u00e9tendu)", +        "auth_name": "EPSG", +        "srid": 27572, +        "order": 35, +        "txt_idx": "lambert-zone-ii" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 18 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert zone III", +        "auth_name": "EPSG", +        "srid": 27573, +        "order": 36, +        "txt_idx": "lambert-zone-iii" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 19 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "NTF (Paris) / Lambert zone IV", +        "auth_name": "EPSG", +        "srid": 27574, +        "order": 37, +        "txt_idx": "lambert-zone-iv" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 20 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 28N", +        "auth_name": "EPSG", +        "srid": 32628, +        "order": 128, +        "txt_idx": "utm-28n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 21 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 29N", +        "auth_name": "EPSG", +        "srid": 32629, +        "order": 129, +        "txt_idx": "utm-29n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 22 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 30N", +        "auth_name": "EPSG", +        "srid": 32630, +        "order": 130, +        "txt_idx": "utm-30n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 23 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 31N", +        "auth_name": "EPSG", +        "srid": 32631, +        "order": 131, +        "txt_idx": "utm-31n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 24 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 32N", +        "auth_name": "EPSG", +        "srid": 32632, +        "order": 132, +        "txt_idx": "utm-32n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 25 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 33N", +        "auth_name": "EPSG", +        "srid": 32633, +        "order": 133, +        "txt_idx": "utm-33n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 26 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 34N", +        "auth_name": "EPSG", +        "srid": 32634, +        "order": 134, +        "txt_idx": "utm-34n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 27 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 35N", +        "auth_name": "EPSG", +        "srid": 32635, +        "order": 135, +        "txt_idx": "utm-35n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 28 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 36N", +        "auth_name": "EPSG", +        "srid": 32636, +        "order": 136, +        "txt_idx": "utm-36n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 29 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 37N", +        "auth_name": "EPSG", +        "srid": 32637, +        "order": 137, +        "txt_idx": "utm-37n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 30 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 38N", +        "auth_name": "EPSG", +        "srid": 32638, +        "order": 138, +        "txt_idx": "utm-38n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 31 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 39N", +        "auth_name": "EPSG", +        "srid": 32639, +        "order": 139, +        "txt_idx": "utm-39n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 32 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / UTM zone 40N", +        "auth_name": "EPSG", +        "srid": 32640, +        "order": 140, +        "txt_idx": "utm-40n" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 33 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "ETRS89 / LCC Europe", +        "auth_name": "EPSG", +        "srid": 3034, +        "order": 200, +        "txt_idx": "lcc-europe" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 34 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "ETRS89 / LAEA Europe", +        "auth_name": "EPSG", +        "srid": 3035, +        "order": 201, +        "txt_idx": "laea-europe" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 35 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "WGS 84 / World Mercator", +        "auth_name": "EPSG", +        "srid": 3395, +        "order": 250, +        "txt_idx": "wgs84-mercator" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 36 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGFG95 / UTM zone 22N (Guyane)", +        "auth_name": "EPSG", +        "srid": 2972, +        "order": 300, +        "txt_idx": "utm-guyane" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 37 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGR92 / UTM zone 40S (La R\u00e9union)", +        "auth_name": "EPSG", +        "srid": 2975, +        "order": 310, +        "txt_idx": "utm-reunion" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 38 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGSPM06 / UTM 21N (St-Pierre-et-Miquelon)", +        "auth_name": "EPSG", +        "srid": 4467, +        "order": 320, +        "txt_idx": "utm-miquelon" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 39 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RGM04 / UTM zone 38S (Mayotte)", +        "auth_name": "EPSG", +        "srid": 4471, +        "order": 330, +        "txt_idx": "utm-mayotte" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 40 +}, +{ +    "fields": { +        "comment": "", +        "available": true, +        "label": "RRAF 1991 / UTM zone 20N (Guadeloupe et Martinique)", +        "auth_name": "EPSG", +        "srid": 4559, +        "order": 340, +        "txt_idx": "utm-guadeloupe" +    }, +    "model": "ishtar_common.spatialreferencesystem", +    "pk": 41 +} +] diff --git a/ishtar_common/tests.py b/ishtar_common/tests.py index 464960b3a..ad623980d 100644 --- a/ishtar_common/tests.py +++ b/ishtar_common/tests.py @@ -39,6 +39,21 @@ from ishtar_common import views  from ishtar_common.utils import post_save_point +COMMON_FIXTURES = [ +    settings.ROOT_PATH + '../fixtures/initial_data-auth-fr.json', +    settings.ROOT_PATH + '../ishtar_common/fixtures/initial_data-fr.json', +    settings.ROOT_PATH + +    '../ishtar_common/fixtures/initial_spatialrefsystem-fr.json', +    settings.ROOT_PATH + +    '../ishtar_common/fixtures/initial_importtypes-fr.json', +    ] + +OPERATION_FIXTURES = COMMON_FIXTURES + [ +    settings.ROOT_PATH + +    '../archaeological_operations/fixtures/initial_data-fr.json' +] + +  def create_superuser():      username = 'username4277'      password = 'dcbqj756456!@%' @@ -318,16 +333,7 @@ class AccessControlTest(TestCase):  class AdminGenTypeTest(TestCase): -    fixtures = [settings.ROOT_PATH + -                '../fixtures/initial_data-auth-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_data-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_spatialrefsystem-fr.json', -                settings.ROOT_PATH + -                '../ishtar_common/fixtures/initial_importtypes-fr.json', -                settings.ROOT_PATH + -                '../archaeological_operations/fixtures/initial_data-fr.json'] +    fixtures = OPERATION_FIXTURES      gen_models = [          models.OrganizationType, models.PersonType, models.TitleType,          models.AuthorType, models.SourceType, models.OperationType, diff --git a/ishtar_common/wizards.py b/ishtar_common/wizards.py index 128833ad4..a82b68d5b 100644 --- a/ishtar_common/wizards.py +++ b/ishtar_common/wizards.py @@ -762,6 +762,10 @@ class Wizard(NamedUrlWizardView):                      item.skip_history_when_saving = True                      item.save() +        if hasattr(obj, 'fix'): +            # post save/m2m specific fix +            obj.fix() +          # make the new object a default          if self.current_obj_slug:              self.request.session[self.current_obj_slug] = unicode(obj.pk)  | 
