示例#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())