|
@@ -49,7 +49,7 @@ class Command(BaseCommand):
|
|
|
assert(nadh == npay + nfree + nmiss)
|
|
|
total = list(map(add, total, [ntotal, ninf, nadh, npay, nfree, nmiss, income]))
|
|
|
lines += [(str(service_type), ntotal, ninf, nadh, npay, nfree, nmiss, income)]
|
|
|
- self.stdout.write("%-18s%12s%12s%12s%12s%12s%12s%12s%12s%12s" % ('Service', 'total', 'infra', 'adhérents', 'gratuits', 'manquants', 'payés', 'euros', 'moyenne', 'pourcent'))
|
|
|
+ self.stdout.write("%-18s%12s%12s%14s%12s%12s%12s%12s%12s%12s" % ('Service', 'total', 'infra', 'adhérent·e·s', 'gratuits', 'manquants', 'payés', 'euros', 'moyenne', 'pourcent'))
|
|
|
lines += [('TOTAL',) + tuple(total)]
|
|
|
total_income = total[6]
|
|
|
for service_type, ntotal, ninf, nadh, npay, nfree, nmiss, income in lines:
|
|
@@ -61,7 +61,7 @@ class Command(BaseCommand):
|
|
|
moy = '%12.2f' % (income / npay)
|
|
|
else:
|
|
|
moy = '%12s' % '-'
|
|
|
- self.stdout.write("%-18s%12d%12d%12d%12d%12d%12d%12.2f%s%12.1f" % (service_type, ntotal, ninf, nadh, nfree, nmiss, npay, income, moy, percent))
|
|
|
+ self.stdout.write("%-18s%12d%12d%14d%12d%12d%12d%12.2f%s%12.1f" % (service_type, ntotal, ninf, nadh, nfree, nmiss, npay, income, moy, percent))
|
|
|
|
|
|
def handle_adhesions(self):
|
|
|
adhesions = Adhesion.objects.filter(Q(active__isnull=True) | Q(active=True))
|