mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 22:49:19 +00:00
13 lines
225 B
Python
13 lines
225 B
Python
import frappe
|
|
|
|
from erpnext.regional.saudi_arabia.setup import make_custom_fields
|
|
|
|
|
|
def execute():
|
|
company = frappe.get_all('Company', filters = {'country': 'Saudi Arabia'})
|
|
if not company:
|
|
return
|
|
|
|
make_custom_fields()
|
|
|