|
@@ -1,6 +1,5 @@
|
|
|
-from django.core.management.base import BaseCommand, CommandError
|
|
|
+from django.core.management.base import BaseCommand
|
|
|
from django.db.models import DecimalField, F, Sum, Func, Q
|
|
|
-from django.utils import timezone
|
|
|
|
|
|
from decimal import Decimal
|
|
|
|
|
@@ -15,19 +14,23 @@ class Command(BaseCommand):
|
|
|
total_income = Decimal(0.0)
|
|
|
lines = []
|
|
|
for service_type in ServiceType.objects.all():
|
|
|
- now = timezone.now()
|
|
|
services = service_type.services.filter(Service.get_ongoing_filter())
|
|
|
ntotal = services.count()
|
|
|
services = services.exclude(adherent=None)
|
|
|
nadh = services.count()
|
|
|
ninf = ntotal - nadh
|
|
|
- services = services.exclude(Q(contribution__isnull=True) | Q(contribution__amount=0) | Q(contribution__period=0))
|
|
|
+ services = services.exclude(
|
|
|
+ Q(contribution__isnull=True)
|
|
|
+ | Q(contribution__amount=0)
|
|
|
+ | Q(contribution__period=0)
|
|
|
+ )
|
|
|
npay = services.count()
|
|
|
ngra = nadh - npay
|
|
|
amount = Func(F('contribution__amount'), function='CAST', template=as_float_template)
|
|
|
period = F('contribution__period')
|
|
|
output_field = DecimalField(max_digits=9, decimal_places=2)
|
|
|
- income = services.aggregate(income=Sum(amount / period, output_field=output_field))['income'] or Decimal(0.0)
|
|
|
+ income = services.aggregate(income=Sum(amount / period,
|
|
|
+ output_field=output_field))['income'] or Decimal(0.0)
|
|
|
total_income += income
|
|
|
lines += [(str(service_type), npay, ninf, ngra, income,)]
|
|
|
self.stdout.write("%-16s%12s%12s%12s%12s%12s" % ('Service', 'npay', 'ninf', 'ngra', 'eur', 'pourcent'))
|