2015-03-03 14:55:30 +05:30
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
2013-08-05 14:59:54 +05:30
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-04-23 15:36:26 +05:30
|
|
|
from __future__ import unicode_literals
|
2014-02-14 15:47:51 +05:30
|
|
|
import frappe
|
2014-10-16 19:02:58 +05:30
|
|
|
from erpnext.accounts.report.accounts_receivable.accounts_receivable import ReceivablePayableReport
|
2013-04-23 15:36:26 +05:30
|
|
|
|
|
|
|
def execute(filters=None):
|
2014-10-16 19:02:58 +05:30
|
|
|
args = {
|
|
|
|
"party_type": "Supplier",
|
|
|
|
"naming_by": ["Buying Settings", "supp_master_name"],
|
|
|
|
}
|
|
|
|
return ReceivablePayableReport(filters).run(args)
|