コード例 #1
0
ファイル: models.py プロジェクト: vitaly4uk/real-expert-noel
 def get_price(self):
     """ calculate price """
     try:
         return float(self.price) * float(Constant.get_const('currency'))
     except TypeError:
         return float(self.price)
コード例 #2
0
ファイル: models.py プロジェクト: vitaly4uk/real-expert-noel
 def get_total_price(self):
     """ return item total price """
     try:
         return float(self.price) * float(self.quantity) * float(Constant.get_const('currency'))
     except TypeError:
         return float(self.price) * float(self.quantity)