22 lines
		
	
	
		
			760 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			760 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
 | |
| 
 | |
| def execute():
 | |
| 	frappe.reload_doc('accounts', 'doctype', 'mode_of_payment')
 | |
| 	frappe.reload_doc('accounts', 'doctype', 'mode_of_payment_account')
 | |
| 
 | |
| 	mode_of_payment_list = frappe.db.sql("""select name, default_account
 | |
| 		from `tabMode of Payment`""", as_dict=1)
 | |
| 
 | |
| 	for d in mode_of_payment_list:
 | |
| 		if d.get("default_account"):
 | |
| 			parent_doc = frappe.get_doc("Mode of Payment", d.get("name"))
 | |
| 
 | |
| 			parent_doc.set("accounts",
 | |
| 				[{"company": frappe.db.get_value("Account", d.get("default_account"), "company"),
 | |
| 				"default_account": d.get("default_account")}])
 | |
| 			parent_doc.save()
 |