|
@@ -11,7 +11,7 @@ from django.core.serializers import serialize
|
|
|
from django.http import HttpResponse
|
|
|
from django.db.models.functions import Cast
|
|
|
from django.contrib.postgres.aggregates import StringAgg
|
|
|
-from django.db import connection
|
|
|
+from django.db import connection, transaction
|
|
|
from django.core.cache import cache
|
|
|
from django.contrib.humanize.templatetags.humanize import naturaltime
|
|
|
from django.contrib.contenttypes.models import ContentType
|
|
@@ -347,6 +347,24 @@ class ServiceAdmin(admin.ModelAdmin):
|
|
|
readonly_fields = ('get_contribution_link', 'is_active',)
|
|
|
raw_id_fields = ('adhesion',)
|
|
|
|
|
|
+ def save_model(self, request, srv, form, change):
|
|
|
+ if 'adhesion' in form.changed_data:
|
|
|
+ with transaction.atomic():
|
|
|
+ old_srv = Service.objects.get(pk=srv.pk)
|
|
|
+ adhesion = srv.adhesion
|
|
|
+ srv.adhesion = old_srv.adhesion
|
|
|
+ label = srv.label
|
|
|
+ srv.label = '%s (transféré à ADT%d le %s)' % (srv.label, adhesion.pk, timezone.now().strftime('%d/%m/%Y'))
|
|
|
+ srv.save()
|
|
|
+ new_srv = Service.objects.create(adhesion=adhesion, service_type=srv.service_type, label=label,
|
|
|
+ notes=srv.notes, loan_equipment=srv.loan_equipment)
|
|
|
+ for allocation in srv.active_allocations:
|
|
|
+ allocation.end = timezone.now()
|
|
|
+ allocation.save()
|
|
|
+ ServiceAllocation.objects.create(resource=allocation.resource, service=new_srv, route=allocation.route)
|
|
|
+ else:
|
|
|
+ super().save_model(request, srv, form, change)
|
|
|
+
|
|
|
def get_queryset(self, request):
|
|
|
qs = super().get_queryset(request)
|
|
|
qs = qs.prefetch_related('allocations',)
|