I don't know if I'm thinking of this the right way, and perhaps somebody will set me straight.

Let's say I have a models.py that contains this:

class Order(models.Model):
  customer = models.foreignKey(Customer)
  total = models.charField(max_length=10)
  has_shipped = models.booleanField()

class Product(models.Model):
  sku = models.charField(max_length=30)
  price = models.charField(max_length=10)

Now, obviously an order would contain products and not just a product. What would be the best way to add products to an order? The only way I can think is to add another field to 'Order' called 'products', and fill it with a CSV with a sku for each product in it. This, for obvious reasons is not ideal, but I'm not very good at this stuff yet and have no idea of what the better way is.

(keep in mind this is pseudo code, so don't mind misspellings, etc.)

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

What you're after is a many to many relationship between product and order.

Something like:

class Order(models.Model):
  customer = models.foreignKey(Customer)
  total = models.charField(max_length=10)
  has_shipped = models.booleanField()
  products = models.ManyToManyField(Product)

see the docs here and here.

link|improve this answer
This. Might want to format your URLs. – drozzy Jul 3 '09 at 18:12
Is that better? – Gareth Simpson Jul 4 '09 at 2:40
Thanks man. I was just reading "Python Web Development with Django" today and came to that conclusion, but have been trying to figure out all day if it was correct. Thank you. – orokusaki Jul 4 '09 at 3:58
feedback

You can create one more model which will serve as many-to-many relationship between Order and Products

something like this

class OrderProducts(models.Model)
     product = models.ForeignKey(Product)
     order = models.ForeignKey(Order)
link|improve this answer
This is redundant as the Order itself already serves as the "Order of Products" – drozzy Jul 3 '09 at 18:06
Yes, but in the answer. At the time that i wrote this answer I just didn't remember of the type models.ManyToManyField in django so proposed classical solution. – tdelev Jul 4 '09 at 13:41
This is not redundant. What if you have a price change in the future. If you had a price change, and the order was only linked to the original products, you would have no way of knowing how much the customer paid for what. This way you can mirror the products in their current state at the time of the order. – orokusaki Dec 24 '09 at 16:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.