diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-12-31 15:59:45 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-12-31 15:59:45 +0700 |
| commit | 1ec4b411c91851202a6058b531257f45fdd76457 (patch) | |
| tree | 10cc7ee5a9243080a88bc25160972b2813211c2b /indoteknik_custom/models/stock_move.py | |
| parent | d35c2dce88a87bc05d30c4935d51d7d58aa5d37d (diff) | |
| parent | e90f1b5a714bc1a18073df18f7798d28cafab7c4 (diff) | |
Merge branch 'cr/ppn12%' into production
Diffstat (limited to 'indoteknik_custom/models/stock_move.py')
| -rw-r--r-- | indoteknik_custom/models/stock_move.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_move.py b/indoteknik_custom/models/stock_move.py index e1d4e74c..c0ac341c 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 * (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) |
