mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-04 12:49:10 +00:00
docs: doctring for patch
This commit is contained in:
@@ -6,7 +6,13 @@ from __future__ import unicode_literals
|
|||||||
import frappe
|
import frappe
|
||||||
from erpnext.regional.germany.setup import make_custom_fields
|
from erpnext.regional.germany.setup import make_custom_fields
|
||||||
|
|
||||||
|
|
||||||
def execute():
|
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'})
|
company_list = frappe.get_all('Company', filters = {'country': 'Germany'})
|
||||||
if not company_list:
|
if not company_list:
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user