* fix: pound, grams to Ounce converion factor added * fix: patch date updated for UOM Conversion Factor * fix: grams move to gram * fix: duplicate entry of uom converion factor and patch added * fix: typo fix * fix: minor changes * Update patches.txt Co-authored-by: Marica <maricadsouza221197@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			339 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			339 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| import frappe, json
 | |
| 
 | |
| def execute():
 | |
| 	from erpnext.setup.setup_wizard.operations.install_fixtures import add_uom_data
 | |
| 
 | |
| 	frappe.reload_doc("setup", "doctype", "UOM Conversion Factor")
 | |
| 	frappe.reload_doc("setup", "doctype", "UOM")
 | |
| 	frappe.reload_doc("stock", "doctype", "UOM Category")
 | |
| 
 | |
| 	add_uom_data() |