fix: Add patch to make custom fields

(cherry picked from commit 508832e90a)

# Conflicts:
#	erpnext/patches.txt
This commit is contained in:
Deepesh Garg
2021-11-08 17:46:24 +05:30
committed by mergify-bot
parent aa6caa00bf
commit f5251b5a86
2 changed files with 18 additions and 0 deletions

View File

@@ -331,3 +331,9 @@ erpnext.patches.v13_0.requeue_failed_reposts
erpnext.patches.v13_0.fetch_thumbnail_in_website_items
erpnext.patches.v12_0.update_production_plan_status
erpnext.patches.v13_0.update_category_in_ltds_certificate
<<<<<<< HEAD
=======
erpnext.patches.v13_0.create_pan_field_for_india #2
erpnext.patches.v14_0.delete_hub_doctypes
erpnext.patches.v13_0.create_ksa_vat_custom_fields
>>>>>>> 508832e90a (fix: Add patch to make custom fields)

View File

@@ -0,0 +1,12 @@
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()