@@ -437,7 +437,7 @@ class MemberActivityInfo(BaseModelMixin, BrandInfoMixin): |
||
| 437 | 437 |
@property |
| 438 | 438 |
def welfares(self): |
| 439 | 439 |
try: |
| 440 |
- welfares = MemberActivityContributionWelfareInfo.objects.get(activity_id=self.activity_id, status=True) |
|
| 440 |
+ welfares = MemberActivityContributionWelfareInfo.objects.filter(activity_id=self.activity_id, status=True) |
|
| 441 | 441 |
return [welfare.data for welfare in welfares] |
| 442 | 442 |
except MemberActivityContributionWelfareInfo.DoesNotExist: |
| 443 | 443 |
return [] |