Accounts Receivable/Payable Summary Error

When I try to load Accounts Receivable/Payable Summary, I get this error. What might be the problem?

Traceback (most recent call last):
File “/home/frappe/frappe-bench/apps/frappe/frappe/app.py”, line 62, in application
response = frappe.handler.handle()
File “/home/frappe/frappe-bench/apps/frappe/frappe/handler.py”, line 22, in handle
data = execute_cmd(cmd)
File “/home/frappe/frappe-bench/apps/frappe/frappe/handler.py”, line 53, in execute_cmd
return frappe.call(method, **frappe.form_dict)
File “/home/frappe/frappe-bench/apps/frappe/frappe/init.py”, line 939, in call
return fn(*args, **newargs)
File “/home/frappe/frappe-bench/apps/frappe/frappe/desk/query_report.py”, line 96, in run
res = frappe.get_attr(method_name)(frappe._dict(filters))
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py”, line 133, in execute
return AccountsReceivableSummary(filters).run(args)
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py”, line 12, in run
return self.get_columns(party_naming_by, args), self.get_data(party_naming_by, args)
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py”, line 52, in get_data
partywise_total = self.get_partywise_total(party_naming_by, args)
File “/home/frappe/frappe-bench/apps/erpnext/erpnext/accounts/report/accounts_receivable_summary/accounts_receivable_summary.py”, line 91, in get_partywise_total
party_total[d.party][k] += d.get(k, 0)
TypeError: unsupported operand type(s) for +=: ‘NoneType’ and ‘NoneType’

I have pushed a fix Minor fix AR/AP summary report · frappe/erpnext@80a9f52 · GitHub

It will be released later today.

1 Like

Alright, that’ll be great.
Thanks

Not yet released

The fix has already been released

Thanks a lot. Got it.