summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/stock_move.py
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2025-01-14 08:30:38 +0700
committerit-fixcomart <it@fixcomart.co.id>2025-01-14 08:30:38 +0700
commit262013945e9729f9cea9a17f2060ec607bc42b64 (patch)
treeb7471511ed9cd899ff94e327c1a6a53d8345cedb /indoteknik_custom/models/stock_move.py
parent1c9308c1a18bd89612dc7fca5726cbf96c28deed (diff)
<iman> hapus ppn 12% dari branch
Diffstat (limited to 'indoteknik_custom/models/stock_move.py')
-rw-r--r--indoteknik_custom/models/stock_move.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_move.py b/indoteknik_custom/models/stock_move.py
index c0ac341c..e1d4e74c 100644
--- a/indoteknik_custom/models/stock_move.py
+++ b/indoteknik_custom/models/stock_move.py
@@ -112,7 +112,7 @@ class StockMove(models.Model):
# 440 is static id for "PPN Keluaran" on account.account model
debit_account_id = self.picking_id.account_id.id if self.picking_id.account_id.id else 538
- tax = cost * (12 / 100)
+ tax = cost * (11 / 100)
move_lines = self._prepare_account_move_line(qty, cost, credit_account_id, debit_account_id, description)
move_lines += self._prepare_account_move_line(qty, tax, 440, debit_account_id, description)