14 lines
406 B
Python
14 lines
406 B
Python
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
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)
|