fix: patch to add custom fields
This commit is contained in:
parent
368a6541e9
commit
03425071e7
@ -764,3 +764,4 @@ erpnext.patches.v13_0.setup_uae_vat_fields
|
||||
execute:frappe.db.set_value('System Settings', None, 'app_name', 'ERPNext')
|
||||
erpnext.patches.v13_0.rename_discharge_date_in_ip_record
|
||||
erpnext.patches.v12_0.purchase_receipt_status
|
||||
erpnext.patches.v13_0.germany_make_custom_fields
|
||||
|
14
erpnext/patches/v13_0/germany_make_custom_fields.py
Normal file
14
erpnext/patches/v13_0/germany_make_custom_fields.py
Normal file
@ -0,0 +1,14 @@
|
||||
# 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():
|
||||
company_list = frappe.get_all('Company', filters = {'country': 'Germany'})
|
||||
if not company_list:
|
||||
return
|
||||
|
||||
make_custom_fields()
|
Loading…
Reference in New Issue
Block a user