915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
19 lines
452 B
Python
19 lines
452 B
Python
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
global_search_settings = frappe.get_single("Global Search Settings")
|
|
|
|
if "Purchase Order" in (
|
|
dt.document_type for dt in global_search_settings.allowed_in_global_search
|
|
):
|
|
return
|
|
|
|
global_search_settings.append(
|
|
"allowed_in_global_search", {"document_type": "Purchase Order"}
|
|
)
|
|
|
|
global_search_settings.save(ignore_permissions=True)
|