1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
import itertools
from typing import Any
from django.contrib.auth.mixins import LoginRequiredMixin, PermissionRequiredMixin
from django.db import transaction
from django.db.models import Q
from django.http import HttpResponseRedirect
from django.shortcuts import render, get_object_or_404
from django.urls import reverse, reverse_lazy
from django.views.generic import CreateView, DetailView, FormView, ListView
from ctrack.caf.models import EssentialService, CAF
from ctrack.register.models import EngagementEvent
from .forms import AddressInlineFormSet, IncidentReportForm, OrganisationCreateForm
from .models import IncidentReport, Organisation, Person
# TODO - needs a permission on this view
def essential_service_detail(request, pk):
es = EssentialService.objects.get(pk=pk)
org = es.organisation
cafs = CAF.objects.filter(organisation=org.pk)
asses = es.systems.all()
# es = get_object_or_404(EssentialService, organisation__pk=org_pk)
context = {"es": es, "asses": asses, "cafs": cafs}
return render(request, "organisations/essential_service_detail.html", context)
class PersonListView(PermissionRequiredMixin, ListView):
model = Person
template_name = "organisations/person_list.html"
permission_required = "organisations.view_person"
def person_detail(request, person_id):
p = get_object_or_404(Person, pk=person_id)
return render(request, "organisations/person_detail.html", {"person": p})
class OrganisationCreate(PermissionRequiredMixin, CreateView):
model = Organisation
template_name = "organisations/org_create_formset.html"
form_class = OrganisationCreateForm
permission_required = "organisations.add_organisation"
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
if self.request.POST:
context["addresses"] = AddressInlineFormSet(self.request.POST)
else:
context["addresses"] = AddressInlineFormSet()
return context
def form_valid(self, form):
context = self.get_context_data()
addresses = context["addresses"]
with transaction.atomic():
# form.instance.updated_by = self.request.user REMOVED updated_by
self.object = form.save()
if addresses.is_valid():
addresses.instance = self.object
addresses.save()
return super().form_valid(form)
def get_success_url(self):
return reverse_lazy("organisations:detail", kwargs={"slug": self.object.slug})
class OrganisationListView(PermissionRequiredMixin, ListView):
model = Organisation
permission_required = "organisations.view_organisation"
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["organisation_list"] = Organisation.objects.all().order_by("name")
return context
class OrganisationDetailView(PermissionRequiredMixin, DetailView):
model = Organisation
permission_required = "organisations.view_organisation"
def get_context_data(self, **kwargs: Any):
context = super().get_context_data()
org = kwargs["object"]
peoples = org.person_set.all()
cafs = org.caf_set.all()
# simple datetime events for org
_sdes = [person.get_single_datetime_events() for person in peoples]
flat_sdes = list(itertools.chain.from_iterable(_sdes))
# Some events will not involve a participant, which is what ties an event to an organisation.
# Because we want to list events to an organisation here we must related it via the CAF object too...
engagement_events = EngagementEvent.objects.filter(Q(participants__in=peoples) | Q(related_caf__in=cafs)).order_by("-date")
essential_services = EssentialService.objects.filter(organisation=org)
no_addr = org.addresses.count()
if no_addr > 1:
context["no_addr"] = no_addr
addr = org.addresses.all()
context["addr"] = addr
else:
context["no_addr"] = 1
addr = org.addresses.first()
context["addr"] = addr
people = org.person_set.all()
context["people"] = people
applicable_systems = org.applicable_systems()
context["applicable_systems"] = applicable_systems
context["engagement_events"] = engagement_events
context["essential_services"] = essential_services
context["cafs"] = cafs
context["single_datetime_events"] = flat_sdes
return context
class IncidentReportCreateView(FormView):
model = IncidentReport
form_class = IncidentReportForm
template_name = "organisations/incidentreport_form.html"
success_url = reverse_lazy("core:home")
def get_form_kwargs(self):
kwargs = super().get_form_kwargs()
kwargs["org"] = self.request.user.stakeholder.person.organisation
kwargs["reporting_person"] = self.request.user.stakeholder.person
return kwargs
def form_valid(self, form):
form.save()
return HttpResponseRedirect(reverse("core:home"))
|