18 lines
		
	
	
		
			349 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			349 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Copyright (c) 2017, Frappe and Contributors
 | |
| # License: GNU General Public License v3. See license.txt
 | |
| 
 | |
| 
 | |
| import frappe
 | |
| 
 | |
| 
 | |
| def execute():
 | |
| 	frappe.reload_doc("buying", "doctype", "request_for_quotation_item")
 | |
| 
 | |
| 	frappe.db.sql(
 | |
| 		"""UPDATE `tabRequest for Quotation Item`
 | |
| 			SET
 | |
| 				stock_uom = uom,
 | |
| 				conversion_factor = 1,
 | |
| 				stock_qty = qty"""
 | |
| 	)
 |