Ejemplo n.º 1
0
 def totalamount_alt(self):
     return currency_alt(self.totalamount())
Ejemplo n.º 2
0
 def totalamount_alt(self):
     return currency_alt(self.totalamount())
Ejemplo 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
Ejemplo 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
Ejemplo n.º 5
0
 def total_alt(self):
     return currency_alt(self.total())
Ejemplo n.º 6
0
 def price_alt(self):
     return currency_alt(self.price)
Ejemplo n.º 7
0
 def price_alt(self):
     return currency_alt(self.price)
Ejemplo n.º 8
0
 def total_alt(self):
     return currency_alt(self.total())