summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/stock_move.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/stock_move.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/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)