예제 #1
0
파일: orders.py 프로젝트: RMLL/resarmll
 def totalamount_alt(self):
     return currency_alt(self.totalamount())
예제 #2
0
 def totalamount_alt(self):
     return currency_alt(self.totalamount())
예제 #3
0
파일: orders.py 프로젝트: RMLL/resarmll
 def totalamount_alt(self):
     ret = currency_alt(self.donation)
     for o in self.orderdetail_set.all():
         ret += o.totalamount_alt()
     return ret
예제 #4
0
 def totalamount_alt(self):
     ret = currency_alt(self.donation)
     for o in self.orderdetail_set.all():
         ret += o.totalamount_alt()
     return ret
예제 #5
0
파일: cart.py 프로젝트: RMLL/resarmll
 def total_alt(self):
     return currency_alt(self.total())
예제 #6
0
파일: cart.py 프로젝트: RMLL/resarmll
 def price_alt(self):
     return currency_alt(self.price)
예제 #7
0
 def price_alt(self):
     return currency_alt(self.price)
예제 #8
0
 def total_alt(self):
     return currency_alt(self.total())