From c973e3c746739fc5f69eb663bff9dfbe6290fbd3 Mon Sep 17 00:00:00 2001 From: Gursheen Anand Date: Wed, 12 Jul 2023 17:40:27 +0530 Subject: [PATCH] chore: remove debugging print statements --- erpnext/accounts/report/sales_register/sales_register.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/erpnext/accounts/report/sales_register/sales_register.py b/erpnext/accounts/report/sales_register/sales_register.py index 42fc5b34a7..fd82555d91 100644 --- a/erpnext/accounts/report/sales_register/sales_register.py +++ b/erpnext/accounts/report/sales_register/sales_register.py @@ -48,7 +48,6 @@ def _execute(filters, additional_table_columns=None): invoice_list, additional_table_columns, include_payments ) - print("Accounts", tax_accounts) if not invoice_list: msgprint(_("No record found")) return columns, invoice_list @@ -127,7 +126,6 @@ def _execute(filters, additional_table_columns=None): or 2 ) tax_amount = flt(invoice_tax_map.get(inv.name, {}).get(tax_acc), tax_amount_precision) - print(tax_amount) total_tax += tax_amount row.update({frappe.scrub(tax_acc): tax_amount})