Django admin tabularinline similar queries

I’m developing an online store using Django. I have a main class Product

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class Product(models.Model):
our_code = models.CharField('Наш артикул', max_length = 255, unique=True, blank=True, null=True)
name = models.CharField('Наименование',max_length = 255, blank=True, null=True)
full_name = models.CharField('Полное наименование',max_length = 255, blank=True, null=True)
PRICE_TYPE_CHOICES = [
('manual', 'Ручная установка'),
('rrc', 'РРЦ'),
('mrc', 'МРЦ'),
]
CURRENCY_TYPE_CHOICES = [
('rub', 'RUB (₽)'),
('usd', 'USD ($)'),
('eur', 'EUR (€)'),
('gbr', 'GBP (£)'),
]
price_type = models.CharField('Тип цены',max_length=10, choices=PRICE_TYPE_CHOICES, default='manual')
manual_price = models.DecimalField('Ручная цена',max_digits=20, decimal_places=2, blank=True, null=True)
rrc_price = models.DecimalField('РРЦ', max_digits=20, decimal_places=2, blank=True, null=True)
mrc_price = models.DecimalField('МРЦ', max_digits=20, decimal_places=2, blank=True, null=True)
currency = models.CharField('Валюта',max_length=10, choices=CURRENCY_TYPE_CHOICES, default='rub')
price_currency = models.DecimalField('Цена в валюте', max_digits=20, decimal_places=2, blank=True, null=True)
text_short = models.TextField('Краткое описание', blank=True, null=True)
text_full = models.TextField('Полное описание', blank=True, null=True)
</code>
<code>class Product(models.Model): our_code = models.CharField('Наш артикул', max_length = 255, unique=True, blank=True, null=True) name = models.CharField('Наименование',max_length = 255, blank=True, null=True) full_name = models.CharField('Полное наименование',max_length = 255, blank=True, null=True) PRICE_TYPE_CHOICES = [ ('manual', 'Ручная установка'), ('rrc', 'РРЦ'), ('mrc', 'МРЦ'), ] CURRENCY_TYPE_CHOICES = [ ('rub', 'RUB (₽)'), ('usd', 'USD ($)'), ('eur', 'EUR (€)'), ('gbr', 'GBP (£)'), ] price_type = models.CharField('Тип цены',max_length=10, choices=PRICE_TYPE_CHOICES, default='manual') manual_price = models.DecimalField('Ручная цена',max_digits=20, decimal_places=2, blank=True, null=True) rrc_price = models.DecimalField('РРЦ', max_digits=20, decimal_places=2, blank=True, null=True) mrc_price = models.DecimalField('МРЦ', max_digits=20, decimal_places=2, blank=True, null=True) currency = models.CharField('Валюта',max_length=10, choices=CURRENCY_TYPE_CHOICES, default='rub') price_currency = models.DecimalField('Цена в валюте', max_digits=20, decimal_places=2, blank=True, null=True) text_short = models.TextField('Краткое описание', blank=True, null=True) text_full = models.TextField('Полное описание', blank=True, null=True) </code>
class Product(models.Model):
    our_code = models.CharField('Наш артикул', max_length = 255, unique=True, blank=True, null=True)
    name = models.CharField('Наименование',max_length = 255, blank=True, null=True)
    full_name = models.CharField('Полное наименование',max_length = 255, blank=True, null=True)
    PRICE_TYPE_CHOICES = [
        ('manual', 'Ручная установка'),
        ('rrc', 'РРЦ'),
        ('mrc', 'МРЦ'),
    ]


    CURRENCY_TYPE_CHOICES = [
        ('rub', 'RUB (₽)'),
        ('usd', 'USD ($)'),
        ('eur', 'EUR (€)'),
        ('gbr', 'GBP (£)'),
    ]

    price_type = models.CharField('Тип цены',max_length=10, choices=PRICE_TYPE_CHOICES, default='manual')
    manual_price = models.DecimalField('Ручная цена',max_digits=20, decimal_places=2, blank=True, null=True)
    rrc_price = models.DecimalField('РРЦ', max_digits=20, decimal_places=2, blank=True, null=True)
    mrc_price = models.DecimalField('МРЦ', max_digits=20, decimal_places=2, blank=True, null=True) 
    currency = models.CharField('Валюта',max_length=10, choices=CURRENCY_TYPE_CHOICES, default='rub')
    price_currency = models.DecimalField('Цена в валюте', max_digits=20, decimal_places=2, blank=True, null=True) 
    text_short = models.TextField('Краткое описание', blank=True, null=True)
    text_full = models.TextField('Полное описание', blank=True, null=True)

Associated with it is the ProductWith class, which stores similar products and is displayed in the Product class in the admin panel

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class ProductWith(models.Model):
product = models.ForeignKey(Product, related_name='primary_product_with', default=None, on_delete=models.CASCADE, verbose_name='Товар')
product_with = models.ForeignKey(Product, related_name='product_with_products_with', default=None, on_delete=models.CASCADE, verbose_name='Советуем купить')
</code>
<code>class ProductWith(models.Model): product = models.ForeignKey(Product, related_name='primary_product_with', default=None, on_delete=models.CASCADE, verbose_name='Товар') product_with = models.ForeignKey(Product, related_name='product_with_products_with', default=None, on_delete=models.CASCADE, verbose_name='Советуем купить') </code>
class ProductWith(models.Model):
    product = models.ForeignKey(Product, related_name='primary_product_with', default=None, on_delete=models.CASCADE, verbose_name='Товар')
    product_with = models.ForeignKey(Product, related_name='product_with_products_with', default=None, on_delete=models.CASCADE, verbose_name='Советуем купить')

code admin.py

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class ProductWithAdmin(admin.TabularInline):
model = ProductWith
fk_name = 'product'
extra = 0
raw_id_fields = ('product_with',)
autocomplete_fields = ('product_with',)
</code>
<code>class ProductWithAdmin(admin.TabularInline): model = ProductWith fk_name = 'product' extra = 0 raw_id_fields = ('product_with',) autocomplete_fields = ('product_with',) </code>
class ProductWithAdmin(admin.TabularInline):
    model = ProductWith
    fk_name = 'product'
    extra = 0
    raw_id_fields = ('product_with',)
    autocomplete_fields = ('product_with',)
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>class ProductAdmin(admin.ModelAdmin):
inlines = (ProductProviderAdmin, ProductImageAdmin, ProductAnalogAdmin, ProductColorAdmin, ProductWithAdmin,)
search_fields = ['name', 'our_code']
autocomplete_fields = ["category", "manufacturer", "provider"]
</code>
<code>class ProductAdmin(admin.ModelAdmin): inlines = (ProductProviderAdmin, ProductImageAdmin, ProductAnalogAdmin, ProductColorAdmin, ProductWithAdmin,) search_fields = ['name', 'our_code'] autocomplete_fields = ["category", "manufacturer", "provider"] </code>
class ProductAdmin(admin.ModelAdmin):
    inlines = (ProductProviderAdmin, ProductImageAdmin, ProductAnalogAdmin, ProductColorAdmin, ProductWithAdmin,)
    search_fields = ['name', 'our_code']
    autocomplete_fields = ["category", "manufacturer", "provider"]

The problem is that when you open a product in the admin panel that has ProductWith, similar queries occur (exactly as many as there are products)

i tried using select_related and prefetch_related but nothing helps

New contributor

example is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật