15 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			389 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (c) 2023, Frappe Technologies Pvt. Ltd. and Contributors
 | |
| # License: MIT. See LICENSE
 | |
| 
 | |
| 
 | |
| import frappe
 | |
| 
 | |
| from erpnext import get_default_company
 | |
| 
 | |
| 
 | |
| def execute():
 | |
| 	company = get_default_company()
 | |
| 	if company:
 | |
| 		for d in frappe.get_all("Lower Deduction Certificate", pluck="name"):
 | |
| 			frappe.db.set_value("Lower Deduction Certificate", d, "company", company, update_modified=False)
 |