symposion_app/registrasion/views.py

903 lines
28 KiB
Python
Raw Normal View History

import sys
from registrasion import forms
2016-04-25 00:15:13 +00:00
from registrasion import util
from registrasion.models import commerce
from registrasion.models import inventory
from registrasion.models import people
from registrasion.controllers.batch import BatchController
from registrasion.controllers.cart import CartController
2016-04-11 02:11:14 +00:00
from registrasion.controllers.credit_note import CreditNoteController
from registrasion.controllers.discount import DiscountController
from registrasion.controllers.invoice import InvoiceController
from registrasion.controllers.item import ItemController
from registrasion.controllers.product import ProductController
from registrasion.exceptions import CartValidationError
2016-04-01 00:43:19 +00:00
from collections import namedtuple
from django.conf import settings
from django.contrib.auth.decorators import login_required
from django.contrib.auth.decorators import user_passes_test
from django.contrib.auth.models import User
2016-04-01 00:43:19 +00:00
from django.contrib import messages
from django.core.exceptions import ObjectDoesNotExist
from django.core.exceptions import ValidationError
from django.http import Http404
from django.shortcuts import redirect
from django.shortcuts import render
2016-04-25 00:15:13 +00:00
_GuidedRegistrationSection = namedtuple(
2016-04-01 00:43:19 +00:00
"GuidedRegistrationSection",
(
"title",
"discounts",
"description",
"form",
)
)
2016-04-25 00:15:13 +00:00
@util.all_arguments_optional
class GuidedRegistrationSection(_GuidedRegistrationSection):
''' Represents a section of a guided registration page.
Attributes:
2016-04-25 07:37:33 +00:00
title (str): The title of the section.
2016-04-25 00:15:13 +00:00
2016-04-25 07:37:33 +00:00
discounts ([registrasion.contollers.discount.DiscountAndQuantity, ...]):
2016-04-25 00:15:13 +00:00
A list of discount objects that are available in the section. You
can display ``.clause`` to show what the discount applies to, and
``.quantity`` to display the number of times that discount can be
applied.
2016-04-25 07:37:33 +00:00
description (str): A description of the section.
2016-04-25 00:15:13 +00:00
2016-04-25 07:37:33 +00:00
form (forms.Form): A form to display.
2016-04-25 00:15:13 +00:00
'''
pass
2016-04-01 00:43:19 +00:00
2016-04-01 11:14:39 +00:00
def get_form(name):
dot = name.rindex(".")
mod_name, form_name = name[:dot], name[dot + 1:]
__import__(mod_name)
return getattr(sys.modules[mod_name], form_name)
2016-04-01 11:14:39 +00:00
@login_required
2016-04-25 00:15:13 +00:00
def guided_registration(request):
''' Goes through the registration process in order, making sure user sees
all valid categories.
The user must be logged in to see this view.
Returns:
render: Renders ``registrasion/guided_registration.html``,
with the following data::
{
"current_step": int(), # The current step in the
# registration
"sections": sections, # A list of
# GuidedRegistrationSections
"title": str(), # The title of the page
"total_steps": int(), # The total number of steps
}
'''
SESSION_KEY = "guided_registration_categories"
ASK_FOR_PROFILE = 777 # Magic number. Meh.
next_step = redirect("guided_registration")
2016-04-01 00:43:19 +00:00
sections = []
attendee = people.Attendee.get_instance(request.user)
2016-04-01 00:43:19 +00:00
if attendee.completed_registration:
return redirect(review)
2016-04-01 00:43:19 +00:00
# Step 1: Fill in a badge and collect a voucher code
2016-04-01 05:58:55 +00:00
try:
profile = attendee.attendeeprofilebase
2016-04-01 05:58:55 +00:00
except ObjectDoesNotExist:
profile = None
# Figure out if we need to show the profile form and the voucher form
show_profile_and_voucher = False
if SESSION_KEY not in request.session:
if not profile:
show_profile_and_voucher = True
else:
if request.session[SESSION_KEY] == ASK_FOR_PROFILE:
show_profile_and_voucher = True
if show_profile_and_voucher:
# Keep asking for the profile until everything passes.
request.session[SESSION_KEY] = ASK_FOR_PROFILE
2016-04-25 00:19:20 +00:00
voucher_form, voucher_handled = _handle_voucher(request, "voucher")
profile_form, profile_handled = _handle_profile(request, "profile")
2016-04-01 00:43:19 +00:00
voucher_section = GuidedRegistrationSection(
title="Voucher Code",
form=voucher_form,
)
profile_section = GuidedRegistrationSection(
title="Profile and Personal Information",
form=profile_form,
)
title = "Attendee information"
current_step = 1
sections.append(voucher_section)
sections.append(profile_section)
else:
# We're selling products
starting = attendee.guided_categories_complete.count() == 0
2016-04-01 00:43:19 +00:00
# Get the next category
cats = inventory.Category.objects
if SESSION_KEY in request.session:
_cats = request.session[SESSION_KEY]
cats = cats.filter(id__in=_cats)
else:
cats = cats.exclude(
id__in=attendee.guided_categories_complete.all(),
)
2016-04-01 00:43:19 +00:00
cats = cats.order_by("order")
request.session[SESSION_KEY] = []
if starting:
2016-04-01 00:43:19 +00:00
# Only display the first Category
title = "Select ticket type"
current_step = 2
cats = [cats[0]]
else:
# Set title appropriately for remaining categories
current_step = 3
title = "Additional items"
all_products = inventory.Product.objects.filter(
category__in=cats,
).select_related("category")
with BatchController.batch(request.user):
available_products = set(ProductController.available_products(
request.user,
products=all_products,
))
if len(available_products) == 0:
# We've filled in every category
attendee.completed_registration = True
attendee.save()
return next_step
for category in cats:
products = [
i for i in available_products
if i.category == category
]
prefix = "category_" + str(category.id)
p = _handle_products(request, category, products, prefix)
products_form, discounts, products_handled = p
section = GuidedRegistrationSection(
title=category.name,
description=category.description,
discounts=discounts,
form=products_form,
)
if products:
# This product category has items to show.
sections.append(section)
# Add this to the list of things to show if the form
# errors.
request.session[SESSION_KEY].append(category.id)
if request.method == "POST" and not products_form.errors:
# This is only saved if we pass each form with no
# errors, and if the form actually has products.
attendee.guided_categories_complete.add(category)
2016-04-01 00:43:19 +00:00
if sections and request.method == "POST":
for section in sections:
if section.form.errors:
break
else:
attendee.save()
if SESSION_KEY in request.session:
del request.session[SESSION_KEY]
2016-04-01 00:43:19 +00:00
# We've successfully processed everything
return next_step
2016-04-01 00:43:19 +00:00
data = {
"current_step": current_step,
"sections": sections,
2016-04-01 11:14:39 +00:00
"title": title,
2016-04-01 00:43:19 +00:00
"total_steps": 3,
}
return render(request, "registrasion/guided_registration.html", data)
@login_required
def review(request):
''' View for the review page. '''
return render(
request,
"registrasion/review.html",
{},
)
@login_required
def edit_profile(request):
2016-04-25 01:14:17 +00:00
''' View for editing an attendee's profile
The user must be logged in to edit their profile.
Returns:
redirect or render:
In the case of a ``POST`` request, it'll redirect to ``dashboard``,
or otherwise, it will render ``registrasion/profile_form.html``
with data::
{
"form": form, # Instance of ATTENDEE_PROFILE_FORM.
}
'''
2016-04-25 00:19:20 +00:00
form, handled = _handle_profile(request, "profile")
2016-04-01 00:41:59 +00:00
if handled and not form.errors:
messages.success(
request,
"Your attendee profile was updated.",
)
return redirect("dashboard")
2016-04-01 00:41:59 +00:00
data = {
"form": form,
}
return render(request, "registrasion/profile_form.html", data)
2016-04-01 11:14:39 +00:00
2016-04-25 00:19:20 +00:00
def _handle_profile(request, prefix):
2016-04-01 00:41:59 +00:00
''' Returns a profile form instance, and a boolean which is true if the
form was handled. '''
attendee = people.Attendee.get_instance(request.user)
try:
profile = attendee.attendeeprofilebase
profile = people.AttendeeProfileBase.objects.get_subclass(
pk=profile.id,
)
except ObjectDoesNotExist:
profile = None
ProfileForm = get_form(settings.ATTENDEE_PROFILE_FORM)
# Load a pre-entered name from the speaker's profile,
# if they have one.
try:
speaker_profile = request.user.speaker_profile
speaker_name = speaker_profile.name
except ObjectDoesNotExist:
speaker_name = None
name_field = ProfileForm.Meta.model.name_field()
initial = {}
2016-04-01 11:34:06 +00:00
if profile is None and name_field is not None:
initial[name_field] = speaker_name
form = ProfileForm(
2016-04-01 00:41:59 +00:00
request.POST or None,
initial=initial,
2016-04-01 00:41:59 +00:00
instance=profile,
prefix=prefix
)
handled = True if request.POST else False
if request.POST and form.is_valid():
form.instance.attendee = attendee
form.save()
2016-04-01 00:41:59 +00:00
return form, handled
2016-03-25 03:51:39 +00:00
2016-04-01 11:14:39 +00:00
@login_required
def product_category(request, category_id):
2016-04-25 01:14:17 +00:00
''' Form for selecting products from an individual product category.
Arguments:
category_id (castable to int): The id of the category to display.
Returns:
redirect or render:
If the form has been sucessfully submitted, redirect to
``dashboard``. Otherwise, render
``registrasion/product_category.html`` with data::
{
"category": category, # An inventory.Category for
# category_id
"discounts": discounts, # A list of
# DiscountAndQuantity
"form": products_form, # A form for selecting
# products
"voucher_form": voucher_form, # A form for entering a
# voucher code
}
'''
PRODUCTS_FORM_PREFIX = "products"
VOUCHERS_FORM_PREFIX = "vouchers"
# Handle the voucher form *before* listing products.
# Products can change as vouchers are entered.
2016-04-25 00:19:20 +00:00
v = _handle_voucher(request, VOUCHERS_FORM_PREFIX)
voucher_form, voucher_handled = v
category_id = int(category_id) # Routing is [0-9]+
category = inventory.Category.objects.get(pk=category_id)
with BatchController.batch(request.user):
products = ProductController.available_products(
request.user,
category=category,
)
if not products:
messages.warning(
request,
2016-09-02 01:43:27 +00:00
(
"There are no products available from category: " +
category.name
),
)
return redirect("dashboard")
p = _handle_products(request, category, products, PRODUCTS_FORM_PREFIX)
products_form, discounts, products_handled = p
if request.POST and not voucher_handled and not products_form.errors:
# Only return to the dashboard if we didn't add a voucher code
# and if there's no errors in the products form
if products_form.has_changed():
messages.success(
request,
"Your reservations have been updated.",
)
return redirect(review)
data = {
"category": category,
"discounts": discounts,
"form": products_form,
"voucher_form": voucher_form,
}
2016-03-31 04:44:20 +00:00
return render(request, "registrasion/product_category.html", data)
2016-04-25 00:19:20 +00:00
def _handle_products(request, category, products, prefix):
''' Handles a products list form in the given request. Returns the
form instance, the discounts applicable to this form, and whether the
contents were handled. '''
current_cart = CartController.for_user(request.user)
2016-03-27 00:18:26 +00:00
ProductsForm = forms.ProductsForm(category, products)
# Create initial data for each of products in category
items = commerce.ProductItem.objects.filter(
product__in=products,
cart=current_cart.cart,
).select_related("product")
quantities = []
seen = set()
for item in items:
quantities.append((item.product, item.quantity))
seen.add(item.product)
zeros = set(products) - seen
for product in zeros:
quantities.append((product, 0))
products_form = ProductsForm(
request.POST or None,
product_quantities=quantities,
prefix=prefix,
)
if request.method == "POST" and products_form.is_valid():
if products_form.has_changed():
2016-04-25 00:19:20 +00:00
_set_quantities_from_products_form(products_form, current_cart)
# If category is required, the user must have at least one
# in an active+valid cart
if category.required:
carts = commerce.Cart.objects.filter(user=request.user)
items = commerce.ProductItem.objects.filter(
product__category=category,
cart=carts,
)
if len(items) == 0:
products_form.add_error(
None,
"You must have at least one item from this category",
2016-03-24 03:19:33 +00:00
)
handled = False if products_form.errors else True
# Making this a function to lazily evaluate when it's displayed
# in templates.
discounts = util.lazy(
DiscountController.available_discounts,
2016-04-28 02:39:20 +00:00
request.user,
[],
products,
)
return products_form, discounts, handled
2016-03-25 03:51:39 +00:00
2016-03-27 00:48:17 +00:00
2016-04-25 00:19:20 +00:00
def _set_quantities_from_products_form(products_form, current_cart):
# Makes id_to_quantity, a dictionary from product ID to its quantity
quantities = list(products_form.product_quantities())
id_to_quantity = dict(quantities)
# Get the actual product objects
pks = [i[0] for i in quantities]
products = inventory.Product.objects.filter(
2016-04-07 03:26:25 +00:00
id__in=pks,
2016-05-02 00:55:29 +00:00
).select_related("category").order_by("id")
2016-09-02 01:43:27 +00:00
quantities.sort(key=lambda i: i[0])
# Match the product objects to their quantities
product_quantities = [
2016-04-28 10:15:21 +00:00
(product, id_to_quantity[product.id]) for product in products
]
try:
current_cart.set_quantities(product_quantities)
except CartValidationError as ve:
for ve_field in ve.error_list:
product, message = ve_field.message
products_form.add_product_error(product, message)
2016-03-27 00:48:17 +00:00
2016-04-25 00:19:20 +00:00
def _handle_voucher(request, prefix):
''' Handles a voucher form in the given request. Returns the voucher
form instance, and whether the voucher code was handled. '''
voucher_form = forms.VoucherForm(request.POST or None, prefix=prefix)
current_cart = CartController.for_user(request.user)
if (voucher_form.is_valid() and
voucher_form.cleaned_data["voucher"].strip()):
voucher = voucher_form.cleaned_data["voucher"]
voucher = inventory.Voucher.normalise_code(voucher)
if len(current_cart.cart.vouchers.filter(code=voucher)) > 0:
# This voucher has already been applied to this cart.
# Do not apply code
handled = False
else:
try:
current_cart.apply_voucher(voucher)
except Exception as e:
voucher_form.add_error("voucher", e)
handled = True
else:
handled = False
return (voucher_form, handled)
2016-03-25 03:51:39 +00:00
2016-03-27 00:48:17 +00:00
@login_required
def checkout(request, user_id=None):
2016-04-25 01:14:17 +00:00
''' Runs the checkout process for the current cart.
If the query string contains ``fix_errors=true``, Registrasion will attempt
to fix errors preventing the system from checking out, including by
cancelling expired discounts and vouchers, and removing any unavailable
products.
Arguments:
user_id (castable to int):
If the requesting user is staff, then the user ID can be used to
run checkout for another user.
2016-04-25 01:14:17 +00:00
Returns:
render or redirect:
If the invoice is generated successfully, or there's already a
valid invoice for the current cart, redirect to ``invoice``.
If there are errors when generating the invoice, render
``registrasion/checkout_errors.html`` with the following data::
{
"error_list", [str, ...] # The errors to display.
}
2016-04-25 02:59:43 +00:00
'''
if user_id is not None:
if request.user.is_staff:
user = User.objects.get(id=int(user_id))
else:
raise Http404()
else:
user = request.user
current_cart = CartController.for_user(user)
if "fix_errors" in request.GET and request.GET["fix_errors"] == "true":
current_cart.fix_simple_errors()
try:
current_invoice = InvoiceController.for_cart(current_cart.cart)
except ValidationError as ve:
2016-04-25 01:14:17 +00:00
return _checkout_errors(request, ve)
return redirect("invoice", current_invoice.invoice.id)
2016-04-07 03:26:25 +00:00
2016-04-25 01:14:17 +00:00
def _checkout_errors(request, errors):
error_list = []
for error in errors.error_list:
if isinstance(error, tuple):
error = error[1]
error_list.append(error)
data = {
"error_list": error_list,
}
return render(request, "registrasion/checkout_errors.html", data)
2016-04-07 03:26:25 +00:00
2016-04-08 03:15:24 +00:00
def invoice_access(request, access_code):
''' Redirects to an invoice for the attendee that matches the given access
code, if any.
If the attendee has multiple invoices, we use the following tie-break:
- If there's an unpaid invoice, show that, otherwise
- If there's a paid invoice, show the most recent one, otherwise
- Show the most recent invoid of all
2016-04-25 01:14:17 +00:00
Arguments:
access_code (castable to int): The access code for the user whose
invoice you want to see.
Returns:
redirect:
Redirect to the selected invoice for that user.
2016-04-25 01:14:17 +00:00
Raises:
Http404: If the user has no invoices.
2016-04-25 01:14:17 +00:00
'''
invoices = commerce.Invoice.objects.filter(
2016-04-08 03:15:24 +00:00
user__attendee__access_code=access_code,
).order_by("-issue_time")
2016-04-08 03:15:24 +00:00
if not invoices:
raise Http404()
unpaid = invoices.filter(status=commerce.Invoice.STATUS_UNPAID)
paid = invoices.filter(status=commerce.Invoice.STATUS_PAID)
if unpaid:
invoice = unpaid[0] # (should only be 1 unpaid invoice?)
elif paid:
invoice = paid[0] # Most recent paid invoice
else:
invoice = invoices[0] # Most recent of any invoices
2016-04-08 03:15:24 +00:00
return redirect("invoice", invoice.id, access_code)
def invoice(request, invoice_id, access_code=None):
2016-04-25 01:14:17 +00:00
''' Displays an invoice.
2016-04-08 03:15:24 +00:00
This view is not authenticated, but it will only allow access to either:
the user the invoice belongs to; staff; or a request made with the correct
access code.
2016-04-25 01:14:17 +00:00
Arguments:
invoice_id (castable to int): The invoice_id for the invoice you want
to view.
access_code (Optional[str]): The access code for the user who owns
this invoice.
Returns:
render:
2016-04-25 02:59:43 +00:00
Renders ``registrasion/invoice.html``, with the following
data::
2016-04-25 01:14:17 +00:00
{
"invoice": models.commerce.Invoice(),
}
Raises:
Http404: if the current user cannot view this invoice and the correct
access_code is not provided.
2016-04-08 03:15:24 +00:00
'''
2016-04-24 21:14:14 +00:00
current_invoice = InvoiceController.for_id_or_404(invoice_id)
2016-04-08 03:15:24 +00:00
if not current_invoice.can_view(
user=request.user,
access_code=access_code,
2016-04-08 09:49:18 +00:00
):
2016-04-08 03:15:24 +00:00
raise Http404()
data = {
"invoice": current_invoice.invoice,
}
2016-03-31 04:44:20 +00:00
return render(request, "registrasion/invoice.html", data)
2016-03-23 03:51:04 +00:00
2016-03-25 03:51:39 +00:00
def _staff_only(user):
''' Returns true if the user is staff. '''
return user.is_staff
2016-04-25 07:37:33 +00:00
@user_passes_test(_staff_only)
2016-04-07 09:19:19 +00:00
def manual_payment(request, invoice_id):
''' Allows staff to make manual payments or refunds on an invoice.
This form requires a login, and the logged in user needs to be staff.
Arguments:
invoice_id (castable to int): The invoice ID to be paid
Returns:
render:
Renders ``registrasion/manual_payment.html`` with the following
data::
{
"invoice": models.commerce.Invoice(),
"form": form, # A form that saves a ``ManualPayment``
# object.
}
'''
2016-04-07 09:19:19 +00:00
FORM_PREFIX = "manual_payment"
2016-04-24 21:14:14 +00:00
current_invoice = InvoiceController.for_id_or_404(invoice_id)
2016-03-23 03:51:04 +00:00
2016-04-07 09:19:19 +00:00
form = forms.ManualPaymentForm(
request.POST or None,
prefix=FORM_PREFIX,
)
if request.POST and form.is_valid():
form.instance.invoice = current_invoice.invoice
form.instance.entered_by = request.user
2016-04-07 09:19:19 +00:00
form.save()
current_invoice.update_status()
form = forms.ManualPaymentForm(prefix=FORM_PREFIX)
data = {
"invoice": current_invoice.invoice,
2016-04-07 09:19:19 +00:00
"form": form,
}
return render(request, "registrasion/manual_payment.html", data)
@user_passes_test(_staff_only)
def refund(request, invoice_id):
''' Marks an invoice as refunded and requests a credit note for the
full amount paid against the invoice.
This view requires a login, and the logged in user must be staff.
Arguments:
invoice_id (castable to int): The ID of the invoice to refund.
Returns:
redirect:
Redirects to ``invoice``.
'''
2016-04-24 21:14:14 +00:00
current_invoice = InvoiceController.for_id_or_404(invoice_id)
try:
current_invoice.refund()
messages.success(request, "This invoice has been refunded.")
except ValidationError as ve:
messages.error(request, ve)
return redirect("invoice", invoice_id)
2016-04-11 02:11:14 +00:00
@user_passes_test(_staff_only)
2016-04-11 02:11:14 +00:00
def credit_note(request, note_id, access_code=None):
''' Displays a credit note.
If ``request`` is a ``POST`` request, forms for applying or refunding
a credit note will be processed.
This view requires a login, and the logged in user must be staff.
Arguments:
note_id (castable to int): The ID of the credit note to view.
Returns:
render or redirect:
If the "apply to invoice" form is correctly processed, redirect to
that invoice, otherwise, render ``registration/credit_note.html``
with the following data::
{
"credit_note": models.commerce.CreditNote(),
"apply_form": form, # A form for applying credit note
# to an invoice.
"refund_form": form, # A form for applying a *manual*
# refund of the credit note.
"cancellation_fee_form" : form, # A form for generating an
# invoice with a
# cancellation fee
}
2016-04-11 02:11:14 +00:00
'''
2016-09-02 06:03:29 +00:00
note_id = int(note_id)
2016-04-24 21:14:14 +00:00
current_note = CreditNoteController.for_id_or_404(note_id)
2016-04-11 02:11:14 +00:00
apply_form = forms.ApplyCreditNoteForm(
current_note.credit_note.invoice.user,
request.POST or None,
prefix="apply_note"
)
refund_form = forms.ManualCreditNoteRefundForm(
request.POST or None,
prefix="refund_note"
)
cancellation_fee_form = forms.CancellationFeeForm(
request.POST or None,
prefix="cancellation_fee"
)
if request.POST and apply_form.is_valid():
inv_id = apply_form.cleaned_data["invoice"]
invoice = commerce.Invoice.objects.get(pk=inv_id)
current_note.apply_to_invoice(invoice)
messages.success(
request,
"Applied credit note %d to invoice." % note_id,
)
return redirect("invoice", invoice.id)
elif request.POST and refund_form.is_valid():
refund_form.instance.entered_by = request.user
refund_form.instance.parent = current_note.credit_note
refund_form.save()
messages.success(
request,
"Applied manual refund to credit note."
)
refund_form = forms.ManualCreditNoteRefundForm(
prefix="refund_note",
)
elif request.POST and cancellation_fee_form.is_valid():
percentage = cancellation_fee_form.cleaned_data["percentage"]
invoice = current_note.cancellation_fee(percentage)
messages.success(
request,
"Generated cancellation fee for credit note %d." % note_id,
)
return redirect("invoice", invoice.invoice.id)
2016-04-11 02:11:14 +00:00
data = {
"credit_note": current_note.credit_note,
"apply_form": apply_form,
"refund_form": refund_form,
"cancellation_fee_form": cancellation_fee_form,
2016-04-11 02:11:14 +00:00
}
return render(request, "registrasion/credit_note.html", data)
@user_passes_test(_staff_only)
def amend_registration(request, user_id):
''' Allows staff to amend a user's current registration cart, and etc etc.
'''
user = User.objects.get(id=int(user_id))
current_cart = CartController.for_user(user)
items = commerce.ProductItem.objects.filter(
cart=current_cart.cart,
).select_related("product")
initial = [{"product": i.product, "quantity": i.quantity} for i in items]
StaffProductsFormSet = forms.staff_products_formset_factory(user)
formset = StaffProductsFormSet(
request.POST or None,
initial=initial,
prefix="products",
)
for item, form in zip(items, formset):
queryset = inventory.Product.objects.filter(id=item.product.id)
form.fields["product"].queryset = queryset
voucher_form = forms.VoucherForm(
request.POST or None,
prefix="voucher",
)
if request.POST and formset.is_valid():
pq = [
(f.cleaned_data["product"], f.cleaned_data["quantity"])
for f in formset
if "product" in f.cleaned_data and
f.cleaned_data["product"] is not None
]
try:
current_cart.set_quantities(pq)
return redirect(amend_registration, user_id)
except ValidationError as ve:
for ve_field in ve.error_list:
product, message = ve_field.message
for form in formset:
2016-09-13 03:19:31 +00:00
if "product" not in form.cleaned_data:
# This is the empty form.
continue
if form.cleaned_data["product"] == product:
form.add_error("quantity", message)
2016-09-13 03:19:31 +00:00
if request.POST and voucher_form.has_changed() and voucher_form.is_valid():
try:
current_cart.apply_voucher(voucher_form.cleaned_data["voucher"])
return redirect(amend_registration, user_id)
except ValidationError as ve:
voucher_form.add_error(None, ve)
ic = ItemController(user)
data = {
"user": user,
"paid": ic.items_purchased(),
"cancelled": ic.items_released(),
"form": formset,
"voucher_form": voucher_form,
}
return render(request, "registrasion/amend_registration.html", data)