2016-05-03 05:59:40 +00:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
|
|
|
|
class VMPlansManager(models.Manager):
|
|
|
|
|
|
|
|
def active(self, user, **kwargs):
|
2016-05-05 06:03:35 +00:00
|
|
|
return self.prefetch_related('hosting_orders__customer__user').\
|
|
|
|
filter(hosting_orders__customer__user=user, hosting_orders__approved=True, **kwargs)\
|
|
|
|
.distinct()
|