On Dec 9, 2007 7:31 AM, pinco <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm trying to populate dynamically at runtime a choicefield and > subsequently validate the user choice, but without results. > The goal is to permit the user, in an e-commerce application, to > choose the number of products to buy through a choicefield, with a > list of integer from 1 to a maximum number set to the amount of > products in stock (i.e. if I have 5 products in stock, the choice > should be restricted to 1, 2, 3, 4, 5). > > The following snippet actually populated in a right way the > choicefiled: > > class FormForProductQuantity(forms.Form): > quantity = forms.ChoiceField() > > def __init__(self, product, *args, **kwargs): > super(FormForProductQuantity, self).__init__(*args, > **kwargs) > self.fields['quantity'].choices = [(str(product.id) + "_" + > str(c), > c) for c in range (1, product.stock_quantity)] > > The problems come when I try to validate user's choice and add the > product to the shopping cart with the following snippet: > > def add_product_to_cart(request, product_id): > if request.method == 'POST': > product = Product.objects.get(pk=product_id) > form = FormForOptionQuantity(request.POST) > if form.is_valid(): > ... do something > > > which raise an the error: > > Traceback: > ... > Exception Value: 'QueryDict' object has no attribute 'stock_quantity' >
You show some code for the form FormForProductQuantity, but then in the code that handles the POST, you are trying to instantiate a FormForOptionQuantity. This form apparently wants a field in the POST data named 'stock_quantity', that doesn't exist. It's more typical to use the same form for GET and POST, are you really trying to use two different ones or did you neglect to update the POST code to reflect a changed form name? Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---