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