rohitwaghchaure | 4e17fae | 2017-12-12 14:40:52 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
| 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
| 4 | from __future__ import unicode_literals |
| 5 | |
| 6 | from erpnext.regional.united_arab_emirates.setup import make_custom_fields, add_print_formats |
Rohit Waghchaure | cfafb21 | 2017-12-25 12:12:07 +0530 | [diff] [blame] | 7 | from erpnext.setup.setup_wizard.operations.taxes_setup import create_sales_tax |
rohitwaghchaure | 4e17fae | 2017-12-12 14:40:52 +0530 | [diff] [blame] | 8 | |
| 9 | def setup(company=None, patch=True): |
| 10 | make_custom_fields() |
| 11 | add_print_formats() |
| 12 | |
| 13 | if company: |
| 14 | create_sales_tax(company) |