brotherton-erpnext/erpnext/patches/v13_0/update_vehicle_no_reqd_condition.py
2021-02-22 20:03:23 +05:30

10 lines
292 B
Python

import frappe
def execute():
company = frappe.get_all('Company', filters = {'country': 'India'})
if not company:
return
if frappe.db.exists('Custom Field', { 'fieldname': 'vehicle_no' }):
frappe.db.set_value('Custom Field', { 'fieldname': 'vehicle_no' }, 'mandatory_depends_on', '')