symposion_app/registrasion/staff_views.py

128 lines
2.9 KiB
Python
Raw Normal View History

import forms
from django.db.models import Q
2016-08-25 11:05:02 +00:00
from django.db.models import Sum
from django.shortcuts import render
from functools import wraps
from models import commerce
'''
All reports must be viewable by staff only (permissions?)
Reports can have:
A form
* Reports are all *gettable* - you can save a URL and get back to the same
report
* Fetching a report *cannot* break the underlying data.
A table
* Headings
* Data lines
* Formats are pluggable
'''
class Report(object):
2016-08-25 11:10:07 +00:00
def __init__(self, title, form, headings, data):
self._title = title
self._form = form
self._headings = headings
self._data = data
2016-08-25 11:10:07 +00:00
@property
def title(self):
''' Returns the form. '''
return self._title
@property
def form(self):
''' Returns the form. '''
return self._form
@property
def headings(self):
''' Returns the headings for the table. '''
return self._headings
@property
def data(self):
''' Returns the data rows for the table. '''
return self._data
def report(view):
''' Decorator that converts a report view function into something that
displays a Report.
'''
@wraps(view)
def inner_view(request, *a, **k):
report = view(request, *a, **k)
ctx = {
2016-08-25 11:10:07 +00:00
"title": report.title,
"form": report.form,
"report": report,
}
return render(request, "registrasion/report.html", ctx)
return inner_view
@report
def items_sold(request):
''' Summarises the items sold and discounts granted for a given set of
products, or products from categories. '''
2016-08-25 11:10:07 +00:00
title = "Paid items"
form = forms.ProductAndCategoryForm(request.GET)
data = None
headings = None
if form.is_valid() and form.has_changed():
products = form.cleaned_data["product"]
categories = form.cleaned_data["category"]
line_items = commerce.LineItem.objects.filter(
2016-08-25 11:05:02 +00:00
Q(product__in=products) | Q(product__category__in=categories),
invoice__status=commerce.Invoice.STATUS_PAID,
).select_related("invoice")
2016-08-25 11:05:02 +00:00
line_items = line_items.order_by(
# sqlite requires an order_by for .values() to work
"-price", "description",
).values(
"price", "description",
).annotate(
total_quantity=Sum("quantity"),
)
print line_items
headings = ["description", "quantity", "price", "total"]
data = []
2016-08-26 03:40:49 +00:00
total_income = 0
for line in line_items:
2016-08-26 03:40:49 +00:00
cost = line["total_quantity"] * line["price"]
2016-08-25 11:05:02 +00:00
data.append([
line["description"], line["total_quantity"],
2016-08-26 03:40:49 +00:00
line["price"], cost,
2016-08-25 11:05:02 +00:00
])
2016-08-26 03:40:49 +00:00
total_income += cost
data.append([
"(TOTAL)", "--", "--", total_income,
])
2016-08-25 11:10:07 +00:00
return Report(title, form, headings, data)