Files
erpnext/erpnext/patches/v13_0/create_ksa_vat_custom_fields.py
Deepesh Garg f5251b5a86 fix: Add patch to make custom fields
(cherry picked from commit 508832e90a)

# Conflicts:
#	erpnext/patches.txt
2021-11-08 12:39:55 +00:00

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()