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