From 33e8d0571815cd20362d9ca65d6dd0de633daf21 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Wed, 31 May 2023 11:03:49 +0530 Subject: [PATCH] fix: Billing Address display in buying transactions (#35451) fix: Billing Address display in buying transactions (#35451) (cherry picked from commit bb21c044f6fb99aca4338cde5978ae77524be2c5) Co-authored-by: Deepesh Garg --- erpnext/controllers/buying_controller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/controllers/buying_controller.py b/erpnext/controllers/buying_controller.py index ab29dd85829..fa566f62ef0 100644 --- a/erpnext/controllers/buying_controller.py +++ b/erpnext/controllers/buying_controller.py @@ -184,6 +184,7 @@ class BuyingController(SubcontractingController): address_dict = { "supplier_address": "address_display", "shipping_address": "shipping_address_display", + "billing_address": "billing_address_display", } for address_field, address_display_field in address_dict.items():