Nomad
NomadSept. 15, 2020, 10:21 a.m.

Django модель с полем choicefiled - проблемка в админке

django, admin, choicefield

всем привет
столкнулся с проблемкой.
есть некая модель пользователя, в которой есть поле:

is_traider = models.IntegerField(default=0, blank=True, null=True, choices=TRAIDER_STATUS)

где

TRAIDER_STATUS = ( ('0', 'User'), ('1', 'Company'), ('2', 'Self employed'), )

пользователя можно создать двумя способами: либо из фронта приложения (Регистрация) либо тупо зайти в админку django и создать пользователя
по умолчанию при создании пользователя по логике вещей, поле is_traider = 0

я создаю пользователя из админки джанго, после ввода емэйла и пароля попадаю на страницу деталей:

и как только выбираю значения для поля is_traider выскакивает ошибка:

может кто подсказать в чем проблема??

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

3
Nomad
  • Sept. 15, 2020, 10:51 a.m.

всем привет еше раз
я решил вопрос
если для кого будет интересно то вот в чем заключалась проблема:

поле is_traider в моей модели типа IntegerField
а мой choices возврашал String, потому что у меня TRAIDER_STATUS = ( ('0', 'User'), ('1', 'Company'), ('2', 'Self employed'), )
я просто поменял в модели вот так: TRAIDER_STATUS = ( (0, 'User'), (1, 'Company'), (2, 'Self employed'), )

и все заработало ))))

    Илья Чичак
    • Sept. 15, 2020, 3:34 p.m.
    • (edited)

    Я позволю себе предложить вам разделить это поле на два:

    is_traider = models.BooleanField()
    traider_type = models.IntegerField(...)
    

    или просто

    user_status
    если оно собирает в себе варианты, что он не только продает, а покупает. Просто само название подразумевает ДА или НЕТ

    Ну и стоит запихать варианты в константы:

    class User(AbstractUser):
        STATUS_USER = 0
        STATUS_COMPANY = 1
        STATUS_SELF_EMPLOYED = 2
    
        TRAIDER_TYPES = (
            (STATUS_USER, 'User'),
            (STATUS_COMPANY, 'Company'),
            (STATUS_SELF_EMPLOYED, 'Self-employed')
        )
    
        user_status = models.IntegerField(default=STATUS_USER, choices=TRAIDER_TYPES) 
    

    потом сильно облегчит жизнь:

    User.objects.filter(user_type=User.STATUS_USER)
    ...
    if user.user_status == User.STATUS_COMPANY:
    ...
    
      Nomad
      • Sept. 16, 2020, 5:54 a.m.
      • The answer was marked as a solution.

      спасибо за ваш комент
      про константы ... даже не подумал ... very good idea

        Comments

        Only authorized users can post comments.
        Please, Log in or Sign up
        AD

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:50points,
        • Rating points-4
        m

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:80points,
        • Rating points4
        m

        C ++ - Test 004. Pointers, Arrays and Loops

        • Result:20points,
        • Rating points-10
        Last comments
        i
        innorwallNov. 11, 2024, 10:12 p.m.
        Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
        i
        innorwallNov. 11, 2024, 6:23 p.m.
        QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
        i
        innorwallNov. 11, 2024, 3:50 p.m.
        Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
        i
        innorwallNov. 11, 2024, 2:19 p.m.
        Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
        i
        innorwallNov. 11, 2024, 1:55 p.m.
        PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
        Now discuss on the forum
        i
        innorwallNov. 11, 2024, 8:56 p.m.
        добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
        i
        innorwallNov. 11, 2024, 10:55 a.m.
        Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
        9
        9AnonimOct. 25, 2024, 9:10 a.m.
        Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

        Follow us in social networks