X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/87bd94a94dc6cc3dbf47db2bdd17761b3f400138..e6c778f6e92e584815a14d3e6a31a03a5e2ab7e1:/src/catalogue/models.py diff --git a/src/catalogue/models.py b/src/catalogue/models.py index 85757a65..9074fa82 100644 --- a/src/catalogue/models.py +++ b/src/catalogue/models.py @@ -121,6 +121,18 @@ class Author(WikidataModel): def get_absolute_url(self): return reverse("catalogue_author", args=[self.slug]) + @classmethod + def get_by_literal(cls, literal): + names = literal.split(',', 1) + names = [n.strip() for n in names] + if len(names) == 2: + return cls.objects.filter(last_name=names[0], first_name=names[1]).first() + else: + return cls.objects.filter(last_name_pl=names[0], first_name_pl='').first() or \ + cls.objects.filter(first_name_pl=names[0], last_name_pl='').first() or \ + cls.objects.filter(first_name_pl=literal, last_name_pl='').first() or \ + cls.objects.filter(first_name_pl=literal, last_name_pl=None).first() + @property def name(self): return f"{self.last_name}, {self.first_name}" @@ -387,7 +399,7 @@ class Book(WikidataModel): if hasattr(self, '_content_stats'): return self._content_stats try: - stats = self.document_books.first().wldocument().get_statistics()['total'] + stats = self.document_books.first().wldocument(librarian2=True).get_statistics()['total'] except Exception as e: stats = {} self._content_stats = stats @@ -600,6 +612,7 @@ class Audience(models.Model): max_length=32, blank=True, help_text='Odpowiadający kwalifikator Thema.' ) + woblink = models.IntegerField(null=True, blank=True) class Meta: ordering = ('code',)