Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add script to rank tne activities on when they reached a specific target #5215

Merged
merged 4 commits into from
Sep 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions scripts/tne_campaign_ranking.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
from datetime import date
import xlsxwriter

from bluebottle.clients.models import Client
from bluebottle.clients.utils import LocalTenant

from bluebottle.funding.models import Funding, Donor
from bluebottle.geo.models import Location


OFFICE_NAME = 'Mogadishu'
TARGET = 500
DEADLINES = [date(2022, 8, 20), date(2022, 8, 21)]


def run(*args):
tne = Client.objects.get(client_name='nexteconomy')

with LocalTenant(tne, clear_tenant=True):
result = []

location = Location.objects.get(name=OFFICE_NAME)

campaigns = Funding.objects.filter(
initiative__location__name=OFFICE_NAME,
deadline__date__in=DEADLINES,
status__in=('succeeded', 'partially_funded')
)
print(len(campaigns))

for activity in campaigns:
print(activity.title, activity.amount_raised, activity.status)

for campaign in campaigns:
donors = campaign.contributors.instance_of(
Donor
).filter(
status='succeeded'
).order_by(
'created'
)

total = 0
for donor in donors:
total += donor.amount.amount

if total >= TARGET:
result.append({
'id': campaign.id,
'title': campaign.title,
'status': campaign.status,
'target reached': str(donor.created),
})
break

workbook = xlsxwriter.Workbook(f'TNE-{location.name}-{DEADLINES[0]}.xlsx', {'remove_timezone': True})
worksheet = workbook.add_worksheet()

worksheet.write_row(0, 0, result[0].keys())

for (index, row) in enumerate(result):
worksheet.write_row(index + 1, 0, row.values())

workbook.close()