summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/purchase_pricelist.py
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2025-01-07 16:02:47 +0700
committerit-fixcomart <it@fixcomart.co.id>2025-01-07 16:02:47 +0700
commit61c9291070da3ef7f81774290db1923789792210 (patch)
treec010ebacb209dfb57fb5fe1d23e986c4b051cac1 /indoteknik_custom/models/purchase_pricelist.py
parentc971e71a19426de6c210100e2e110319df81aafa (diff)
parent1ec4b411c91851202a6058b531257f45fdd76457 (diff)
Merge branch 'production' into iman/pengajuan-tempo
Diffstat (limited to 'indoteknik_custom/models/purchase_pricelist.py')
-rwxr-xr-xindoteknik_custom/models/purchase_pricelist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/indoteknik_custom/models/purchase_pricelist.py b/indoteknik_custom/models/purchase_pricelist.py
index e5b35d7f..c543070a 100755
--- a/indoteknik_custom/models/purchase_pricelist.py
+++ b/indoteknik_custom/models/purchase_pricelist.py
@@ -48,9 +48,9 @@ class PurchasePricelist(models.Model):
def _constrains_include_price(self):
price, taxes = self._get_valid_price()
- # When have tax is excluded or empty tax, then multiply by 1.11
+ # When have tax is excluded or empty tax, then multiply by 1.12
if (taxes and not taxes.price_include) or not taxes:
- price *= 1.11
+ price *= 1.12
self.include_price = price