summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/stock_move.py
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2024-11-16 09:15:42 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2024-11-16 09:15:42 +0700
commit528a737f696b371faa4ede6e5044c84ad3e4785e (patch)
tree379adea74fc8a7ce1d09523e62d56f34cf9d181d /indoteknik_custom/models/stock_move.py
parentafc8a108c9b1c52656bb3bbac9111dfa6e590bcb (diff)
ppn 12%
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 ac2e3cc0..0b7734fb 100644
--- a/indoteknik_custom/models/stock_move.py
+++ b/indoteknik_custom/models/stock_move.py
@@ -91,7 +91,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 * (11 / 100)
+ tax = cost * (12 / 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)