summaryrefslogtreecommitdiff
path: root/archaeological_finds/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r--archaeological_finds/models.py102
1 files changed, 59 insertions, 43 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py
index c8c526d2f..052e493a4 100644
--- a/archaeological_finds/models.py
+++ b/archaeological_finds/models.py
@@ -1,71 +1,87 @@
from archaeological_finds.models_finds import (
- MaterialType,
- ConservatoryState,
- CheckedType,
- IntegrityType,
- RemarkabilityType,
- ObjectType,
- BaseFind,
- FindBasket,
- Find,
- Property,
+ AlterationType,
+ AlterationCauseType,
BatchType,
+ BaseFind,
BFBulkView,
+ CheckedType,
+ CollectionEntryModeType,
+ CommunicabilityType,
+ ConservatoryState,
FBulkView,
+ Find,
+ FindBasket,
+ FindInsideContainer,
FirstBaseFindView,
- AlterationType,
- AlterationCauseType,
- TreatmentEmergencyType,
- TreatmentType,
- CommunicabilityType,
+ FunctionalArea,
+ IntegrityType,
+ InventoryConformity,
+ InventoryMarkingPresence,
+ MarkingType,
+ MaterialType,
MaterialTypeQualityType,
+ MuseumCollection,
+ ObjectType,
ObjectTypeQualityType,
- FindInsideContainer,
- FunctionalArea,
+ OriginalReproduction,
+ Property,
+ RemarkabilityType,
+ TechnicalAreaType,
+ TechnicalProcessType,
+ TreatmentEmergencyType,
+ TreatmentType,
)
from archaeological_finds.models_treatments import (
- Treatment,
AbsFindTreatments,
- FindUpstreamTreatments,
+ Treatment,
FindDownstreamTreatments,
+ FindNonModifTreatments,
FindTreatments,
+ FindUpstreamTreatments,
TreatmentFile,
TreatmentFileType,
TreatmentState,
- FindNonModifTreatments,
)
__all__ = [
- "MaterialType",
- "ConservatoryState",
- "IntegrityType",
- "CheckedType",
- "RemarkabilityType",
- "ObjectType",
+ "AbsFindTreatments",
+ "AlterationType",
+ "AlterationCauseType",
"BaseFind",
- "FindBasket",
- "Find",
- "Property",
+ "BatchType",
"BFBulkView",
+ "CheckedType",
+ "CollectionEntryModeType",
+ "CommunicabilityType",
+ "ConservatoryState",
"FBulkView",
+ "Find",
"FirstBaseFindView",
- "AlterationType",
- "AlterationCauseType",
- "TreatmentEmergencyType",
- "BatchType",
- "TreatmentType",
- "TreatmentState",
- "Treatment",
- "AbsFindTreatments",
- "FindUpstreamTreatments",
- "FindNonModifTreatments",
+ "FindBasket",
"FindDownstreamTreatments",
+ "FindInsideContainer",
+ "FindNonModifTreatments",
"FindTreatments",
+ "FindUpstreamTreatments",
"FunctionalArea",
- "TreatmentFile",
- "TreatmentFileType",
- "CommunicabilityType",
+ "IntegrityType",
+ "InventoryConformity",
+ "InventoryMarkingPresence",
+ "MarkingType",
+ "MaterialType",
"MaterialTypeQualityType",
+ "MuseumCollection",
+ "ObjectType",
"ObjectTypeQualityType",
- "FindInsideContainer",
+ "OriginalReproduction",
+ "Property",
+ "RemarkabilityType",
+ "TechnicalAreaType",
+ "TechnicalProcessType",
+ "Treatment",
+ "TreatmentEmergencyType",
+ "TreatmentFile",
+ "TreatmentFileType",
+ "TreatmentType",
+ "TreatmentState",
]