Merge pull request #4887 from sbkolate/patch-3

enable uom in BOM Table View
This commit is contained in:
Nabin Hait 2016-02-27 10:02:59 +05:30
commit f9103b1b0b

View File

@ -9,6 +9,10 @@ from frappe.model.document import Document
from operator import itemgetter
form_grid_templates = {
"items": "templates/form_grid/item_grid.html"
}
class BOM(Document):
def autoname(self):
last_name = frappe.db.sql("""select max(name) from `tabBOM`