add set to billed option

This commit is contained in:
Robert Einsle 2021-09-07 11:56:49 +02:00
parent 636c4fb27d
commit edba4f47d6

View File

@ -94,7 +94,7 @@ class AccountingAdmin(admin.ModelAdmin):
return True
return False
@admin.action(description='Ausgewählte Buchhaltungseinträge als bezahlt markieren')
@admin.action(description='Ausgewählte Buchhaltungseinträge als Abgerechnet markieren')
def mark_billed(self, request, queryset):
queryset.update(billed=True)