Skip to content

Commit

Permalink
Merge pull request #35602 from deepeshgarg007/pl_account_balance
Browse files Browse the repository at this point in the history
fix: Remove special treatment for P&L Accounts
  • Loading branch information
deepeshgarg007 authored Jun 22, 2023
2 parents 13c0c12 + 0bd4de4 commit 904f835
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions erpnext/accounts/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,6 @@ def get_balance_on(
if not (frappe.flags.ignore_account_permission or ignore_account_permission):
acc.check_permission("read")

if report_type == "Profit and Loss":
# for pl accounts, get balance within a fiscal year
cond.append(
"posting_date >= '%s' and voucher_type != 'Period Closing Voucher'" % year_start_date
)
# different filter for group and ledger - improved performance
if acc.is_group:
cond.append(
Expand Down

0 comments on commit 904f835

Please sign in to comment.