cba7a11d75
* add `uoms` to Item Variant Settings if not already added * add new patch to patch list * change uoms field to no_copy:0
15 lines
294 B
Python
15 lines
294 B
Python
from __future__ import unicode_literals
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
doc = frappe.get_doc('Item Variant Settings')
|
|
variant_field_names = [vf.field_name for vf in doc.fields]
|
|
if 'uoms' not in variant_field_names:
|
|
doc.append(
|
|
'fields', {
|
|
'field_name': 'uoms'
|
|
}
|
|
)
|
|
doc.save()
|