diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-06-06 13:15:11 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-06-06 13:15:11 +0700 |
| commit | 952f278d199df3b9d3c514ce912ededb403dae7f (patch) | |
| tree | b8b68b678ba28a5760e5762fdab8e459fb00d36e | |
| parent | e0ee8e7e1818b854317e8e9510cc7418676b9b0d (diff) | |
fix rupiah
| -rw-r--r-- | indoteknik_custom/models/account_move.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
