summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/purchase_pricelist.py
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2025-01-14 02:05:10 +0000
committerIT Fixcomart <it@fixcomart.co.id>2025-01-14 02:05:10 +0000
commit6dda865a1b3262ce78ed2db024fd03efb091d6a6 (patch)
treeb7471511ed9cd899ff94e327c1a6a53d8345cedb /indoteknik_custom/models/purchase_pricelist.py
parent095dd98d3b5ea0f60497d6074eb04502df024415 (diff)
parent262013945e9729f9cea9a17f2060ec607bc42b64 (diff)
Merged in iman/pengajuan-tempo (pull request #265)
<iman> hapus ppn 12% dari branch
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 c543070a..e5b35d7f 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.12
+ # When have tax is excluded or empty tax, then multiply by 1.11
if (taxes and not taxes.price_include) or not taxes:
- price *= 1.12
+ price *= 1.11
self.include_price = price