Example #1
0
 def totalamount_alt(self):
     return currency_alt(self.totalamount())
Example #2
0
 def totalamount_alt(self):
     return currency_alt(self.totalamount())
Example #3
0
 def totalamount_alt(self):
     ret = currency_alt(self.donation)
     for o in self.orderdetail_set.all():
         ret += o.totalamount_alt()
     return ret
Example #4
0
 def totalamount_alt(self):
     ret = currency_alt(self.donation)
     for o in self.orderdetail_set.all():
         ret += o.totalamount_alt()
     return ret
Example #5
0
 def total_alt(self):
     return currency_alt(self.total())
Example #6
0
 def price_alt(self):
     return currency_alt(self.price)
Example #7
0
 def price_alt(self):
     return currency_alt(self.price)
Example #8
0
 def total_alt(self):
     return currency_alt(self.total())