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.