blob: d9ac6cb0f659aa9f548b1832799211f49ac62f6a [file] [log] [blame]
rohitwaghchaure4e17fae2017-12-12 14:40:52 +05301# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2# License: GNU General Public License v3. See license.txt
3
4from __future__ import unicode_literals
5
6from erpnext.regional.united_arab_emirates.setup import make_custom_fields, add_print_formats
Rohit Waghchaurecfafb212017-12-25 12:12:07 +05307from erpnext.setup.setup_wizard.operations.taxes_setup import create_sales_tax
rohitwaghchaure4e17fae2017-12-12 14:40:52 +05308
9def setup(company=None, patch=True):
10 make_custom_fields()
11 add_print_formats()
12
13 if company:
14 create_sales_tax(company)