From 08f3cf98f9e0738a01ca8a5809fdbfb1b7bb6104 Mon Sep 17 00:00:00 2001 From: khushi8112 Date: Fri, 5 Jun 2026 15:31:43 +0530 Subject: [PATCH 1/2] fix: correct field order in Address and Contacts report --- .../selling/report/address_and_contacts/address_and_contacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/report/address_and_contacts/address_and_contacts.py b/erpnext/selling/report/address_and_contacts/address_and_contacts.py index 65fef8b5ac6..ed25dd5f153 100644 --- a/erpnext/selling/report/address_and_contacts/address_and_contacts.py +++ b/erpnext/selling/report/address_and_contacts/address_and_contacts.py @@ -11,9 +11,9 @@ field_map = { "name", "address_line1", "address_line2", + "pincode", "city", "state", - "pincode", "country", "is_primary_address", ], From bde46cffd0e2321860435eceeaa6c59589ef315c Mon Sep 17 00:00:00 2001 From: khushi8112 Date: Fri, 5 Jun 2026 15:33:39 +0530 Subject: [PATCH 2/2] fix: correct field order in Address and Contacts report --- .../selling/report/address_and_contacts/address_and_contacts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/selling/report/address_and_contacts/address_and_contacts.py b/erpnext/selling/report/address_and_contacts/address_and_contacts.py index ed25dd5f153..0b08a24484f 100644 --- a/erpnext/selling/report/address_and_contacts/address_and_contacts.py +++ b/erpnext/selling/report/address_and_contacts/address_and_contacts.py @@ -20,6 +20,7 @@ field_map = { } + def execute(filters=None): columns, data = get_columns(filters), get_data(filters) return columns, data