summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2023-07-25 04:24:24 +0000
committerIT Fixcomart <it@fixcomart.co.id>2023-07-25 04:24:24 +0000
commite933a05e9b03e489b581f27d1aa304774aafc320 (patch)
tree4c0e32918e1ddf4e7a3e9116d3abb186ad417c7f /indoteknik_custom/models
parent940054dbc1dffca75bfb81e478d5538f762009c6 (diff)
parentd454b715e7c7c31836cd525d9470b0eb3b1e7376 (diff)
Merged in feature/voucher-cart (pull request #67)
Feature/voucher cart
Diffstat (limited to 'indoteknik_custom/models')
-rw-r--r--indoteknik_custom/models/voucher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/voucher.py b/indoteknik_custom/models/voucher.py
index b3a55499..a7151398 100644
--- a/indoteknik_custom/models/voucher.py
+++ b/indoteknik_custom/models/voucher.py
@@ -107,7 +107,7 @@ class Voucher(models.Model):
if self.discount_type == 'percentage':
discount = price * self.discount_amount / 100
max_disc = self.max_discount_amount
- return max_disc if discount > max_disc else discount
+ return discount if max_disc == 0 else min(discount, max_disc)
return 0