915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
15 lines
446 B
Python
15 lines
446 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from erpnext.accounts.report.accounts_receivable.accounts_receivable import ReceivablePayableReport
|
|
|
|
|
|
def execute(filters=None):
|
|
args = {
|
|
"party_type": "Supplier",
|
|
"naming_by": ["Buying Settings", "supp_master_name"],
|
|
}
|
|
return ReceivablePayableReport(filters).run(args)
|