From 952f278d199df3b9d3c514ce912ededb403dae7f Mon Sep 17 00:00:00 2001 From: Azka Nathan Date: Thu, 6 Jun 2024 13:15:11 +0700 Subject: fix rupiah --- indoteknik_custom/models/account_move.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py index 185eeee0..45d54209 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -92,7 +92,7 @@ class AccountMove(models.Model): if record.sale_id.delivery_amt > 0: tb.parse(int(record.sale_id.delivery_amt)) res = tb.getresult().title() - record.delivery_amt_text = res + 'Rupiah' + record.delivery_amt_text = res + ' Rupiah' except: record.delivery_amt_text = res -- cgit v1.2.3