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
22 lines
552 B
Python
22 lines
552 B
Python
# Copyright (c) 2019, Frappe and Contributors
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
from erpnext.regional.germany.setup import make_custom_fields
|
|
|
|
|
|
def execute():
|
|
"""Execute the make_custom_fields method for german companies.
|
|
|
|
It is usually run once at setup of a new company. Since it's new, run it
|
|
once for existing companies as well.
|
|
"""
|
|
company_list = frappe.get_all('Company', filters = {'country': 'Germany'})
|
|
if not company_list:
|
|
return
|
|
|
|
make_custom_fields()
|