summaryrefslogtreecommitdiff
path: root/indoteknik_custom/models/logbook_bill.py
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2024-12-31 15:59:45 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2024-12-31 15:59:45 +0700
commit1ec4b411c91851202a6058b531257f45fdd76457 (patch)
tree10cc7ee5a9243080a88bc25160972b2813211c2b /indoteknik_custom/models/logbook_bill.py
parentd35c2dce88a87bc05d30c4935d51d7d58aa5d37d (diff)
parente90f1b5a714bc1a18073df18f7798d28cafab7c4 (diff)
Merge branch 'cr/ppn12%' into production
Diffstat (limited to 'indoteknik_custom/models/logbook_bill.py')
-rw-r--r--indoteknik_custom/models/logbook_bill.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/logbook_bill.py b/indoteknik_custom/models/logbook_bill.py
index bb956092..3c33aeb7 100644
--- a/indoteknik_custom/models/logbook_bill.py
+++ b/indoteknik_custom/models/logbook_bill.py
@@ -22,7 +22,7 @@ class LogbookBill(models.TransientModel):
('product_id', '=', line.product_id.id),
], order='id desc', limit=1)
total += line.quantity_done * po.price_unit
- total_with_tax = total * 1.11
+ total_with_tax = total * 1.12
return total_with_tax