14 lines
		
	
	
		
			458 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			458 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
 | |
| import frappe
 | |
| 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)
 |