0
class Bla(Case):
    def __init__(self, model, field, condition=None, then=None, **lookups):
    la = model._meta.get_field(field).__str__

returns

<bound method Field.__str__ of <django.db.models.fields.DateField: date>>

How do I get the value of the date field specifically the year?

24thDan
  • 113
  • 1
  • 9

1 Answers1

0

I solved it this way

class Bla(Case):
    def __init__(self, model, field, condition=None, then=None, **lookups):
        la = model.objects.first()
        field_object = model._meta.get_field(field)
        field_value = field_object.value_from_object(la)
        year = field_value.year
24thDan
  • 113
  • 1
  • 9