私のdjangoアプリには3つのモデルがあります
class Company(models.Model):
name = models.CharField(_("Name"), max_length = 100, blank = True, null = True)
address = models.CharField(_("Address"), max_length = 300, blank = True, null = True)
class WebSite(models.Model):
WEBSITE_TYPE_CHOICES = (
('Google+', 'Google+'),
('Facebook', 'Facebook'),
('Orkut', 'Orkut'),
)
user = models.ForeignKey(User)
website = models.URLField(blank = True, null = True)
website_type = models.CharField(max_length = 15, choices = WEBSITE_TYPE_CHOICES, default = 'Google+')
company = models.ForeignKey(Company, null=True, blank=True)
class Review(models.Model):
rating = models.FloatField(blank = True, null = True)
review = models.TextField(blank = True, null = True)
company = models.ForeignKey(Company, null=True, blank=True)
website = models.ForeignKey(Website, null=True, blank=True)
次のようなデータを表示したい
会社A:
- Google - 5 件のレビュー、平均 3.4
- orkut - 9 件のレビュー、平均 4.1
- Facebook - 12 件のレビュー、平均 4.3
- その他 - 2 件のレビュー、平均 2 件
B社:
- Google - 2 件のレビュー、平均 3 件
- Facebook - 5 件のレビュー、平均 4 件
このために私はやった
final_list = company_list = []
websites = Website.objects.select_related().filter(user = user)
for website in websites:
company = website.company
if company is not None and company not in company_list:
company_list.append(brand)
company_websites = websites.filter(company = company)
info = []
for company_website in company_websites:
company_type = company_website.website_type
reviews = Review.objects.filter(company = company, website = company_website)
no_of_reviews = len(reviews)
average = reviews.aggregate(Avg('rating'))
info.append({"type": company_type, "no_of_reviews": no_of_reviews,
"average": average['rating__avg']})
final_list.append({"company": company.name, "stats": info})
コードには2つの問題があります
- それは多くの計算を無駄にしています
- また、どうにかして final_list に空のリストを追加します (BUGGY)
参考: .annotate() を使用できると思いますが、列に基づいて使用する方法を理解できません。私の場合は (company__name) です。