Guest User

Untitled

a guest
Jan 18th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. class Family(models.Model):
  2. name = models.CharField(max_length=100)
  3.  
  4. class Category(models.Model):
  5. name = models.CharField(max_length=100)
  6.  
  7. class Trend(models.Model):
  8. name = models.CharField(max_length=100)
  9. area = models.ForeignKey(Area, related_name='subcategories')
  10. families = models.ManyToManyField(Family, related_name='subcategories')
  11.  
  12. SELECT
  13. cat.*,
  14. subcat.*,
  15. CASE
  16. WHEN tr.id IN (
  17. SELECT tr.id
  18. FROM family fam
  19. INNER JOIN subcategoryfamilyrel rel ON fam.id = rel.family_id
  20. INNER JOIN subcategory subcat1 ON rel.trend_id = subcat1.id
  21. WHERE
  22. fam.id = {family.id}
  23. ) THEN 1
  24. ELSE 0
  25. END AS active
  26. FROM subcategory subcat
  27. INNER JOIN category cat ON subcat.category_id = cat.id;
  28.  
  29. Subcategory.objects.annotate(
  30. active=Case(
  31. When(id__in=profile.family.subcategories.all().values('id'), then=True),
  32. default=Value(False),
  33. output_field=BooleanField()
  34. )
  35. )
  36.  
  37. [
  38. {
  39. "id": 1,
  40. "name": "Русский язык",
  41. "active": true,
  42. "area": {
  43. "id": 1,
  44. "name": "Школа",
  45. "color": "123456"
  46. }
  47. },
  48. {
  49. "id": 2,
  50. "name": "Математика",
  51. "active": ,
  52. "area": {
  53. "id": 1,
  54. "name": "Школа",
  55. "color": "123456"
  56. }
  57. },
  58. {
  59. "id": 6,
  60. "name": "Уборка",
  61. "active": true,
  62. "area": {
  63. "id": 2,
  64. "name": "Дом",
  65. "color": "ABCDEF"
  66. }
  67. }
  68. ]
  69.  
  70. [
  71. {
  72. "id": 1,
  73. "name": "Школа",
  74. "color": "123456",
  75. "subcategories": [
  76. {
  77. "id": 1,
  78. "name": "Русский язык",
  79. "active": true
  80. },
  81. {
  82. "id": 2,
  83. "name": "Математика",
  84. "active": false
  85. }
  86. ]
  87. },
  88. {
  89. "id": 2,
  90. "name": "Дом",
  91. "color": "ABCDEF",
  92. "subcategories": [
  93. {
  94. "id": 3,
  95. "name": "Уборка",
  96. "active": true
  97. }
  98. ]
  99. }
  100. ]
Add Comment
Please, Sign In to add comment