fix: tax accounts in sales register
diff --git a/erpnext/accounts/report/purchase_register/purchase_register.py b/erpnext/accounts/report/purchase_register/purchase_register.py
index ca8b9f0..162e5b5 100644
--- a/erpnext/accounts/report/purchase_register/purchase_register.py
+++ b/erpnext/accounts/report/purchase_register/purchase_register.py
@@ -393,6 +393,7 @@
pi.remarks,
pi.base_net_total,
pi.base_grand_total,
+ pi.base_rounded_total,
pi.outstanding_amount,
pi.mode_of_payment,
)
diff --git a/erpnext/accounts/report/sales_register/sales_register.py b/erpnext/accounts/report/sales_register/sales_register.py
index d3fc373..0ba7186 100644
--- a/erpnext/accounts/report/sales_register/sales_register.py
+++ b/erpnext/accounts/report/sales_register/sales_register.py
@@ -38,7 +38,7 @@
if filters.get("include_payments"):
invoice_list += get_payments(filters)
- columns, income_accounts, tax_accounts, unrealized_profit_loss_accounts = get_columns(
+ columns, income_accounts, unrealized_profit_loss_accounts, tax_accounts = get_columns(
invoice_list, additional_table_columns, include_payments
)