diff --git a/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json b/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json index 111de2ebd4e..e8411fffb02 100644 --- a/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json +++ b/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.json @@ -68,7 +68,7 @@ { "columns": 2, "fieldname": "total_amount", - "fieldtype": "Float", + "fieldtype": "Currency", "in_list_view": 1, "label": "Grand Total", "print_hide": 1, @@ -77,7 +77,7 @@ { "columns": 2, "fieldname": "outstanding_amount", - "fieldtype": "Float", + "fieldtype": "Currency", "in_list_view": 1, "label": "Outstanding", "read_only": 1 @@ -85,7 +85,7 @@ { "columns": 2, "fieldname": "allocated_amount", - "fieldtype": "Float", + "fieldtype": "Currency", "in_list_view": 1, "label": "Allocated" }, @@ -174,7 +174,7 @@ "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2025-07-25 04:32:11.040025", + "modified": "2026-01-05 14:18:03.286224", "modified_by": "Administrator", "module": "Accounts", "name": "Payment Entry Reference", diff --git a/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py b/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py index a5e0b21a9af..0091d792f33 100644 --- a/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py +++ b/erpnext/accounts/doctype/payment_entry_reference/payment_entry_reference.py @@ -18,12 +18,12 @@ class PaymentEntryReference(Document): account_type: DF.Data | None advance_voucher_no: DF.DynamicLink | None advance_voucher_type: DF.Link | None - allocated_amount: DF.Float + allocated_amount: DF.Currency bill_no: DF.Data | None due_date: DF.Date | None exchange_gain_loss: DF.Currency exchange_rate: DF.Float - outstanding_amount: DF.Float + outstanding_amount: DF.Currency parent: DF.Data parentfield: DF.Data parenttype: DF.Data @@ -34,7 +34,7 @@ class PaymentEntryReference(Document): reconcile_effect_on: DF.Date | None reference_doctype: DF.Link reference_name: DF.DynamicLink - total_amount: DF.Float + total_amount: DF.Currency # end: auto-generated types @property