diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-06-06 13:10:44 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-06-06 13:10:44 +0700 |
| commit | e0ee8e7e1818b854317e8e9510cc7418676b9b0d (patch) | |
| tree | 72680fe0de87d32128ce40e030fbe2ee6f64087f | |
| parent | 00ebebce72441282bae3494088b9d6dd28df6e97 (diff) | |
add rupiah on delivery_amt_text
| -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 aa8b97be..185eeee0 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 + record.delivery_amt_text = res + 'Rupiah' except: record.delivery_amt_text = res |
