Reputation: 2217
class PO(models.Model)
qty = models.IntegerField(null=True)
cost = models.IntegerField(null=True)
total = qty * cost
How will I solve total = qty * cost
above. I know it will cause an error, but have no idea of how to deal with this.
Upvotes: 21
Views: 16927
Reputation: 2217
class PO(models.Model)
qty = models.IntegerField(null=True)
cost = models.IntegerField(null=True)
@property
def total(self):
return self.qty * self.cost
Upvotes: 16