2017-12-12 09:10:52 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from erpnext.regional.united_arab_emirates.setup import make_custom_fields, add_print_formats
|
2017-12-25 06:42:07 +00:00
|
|
|
from erpnext.setup.setup_wizard.operations.taxes_setup import create_sales_tax
|
2017-12-12 09:10:52 +00:00
|
|
|
|
|
|
|
def setup(company=None, patch=True):
|
|
|
|
make_custom_fields()
|
|
|
|
add_print_formats()
|
|
|
|
|
|
|
|
if company:
|
|
|
|
create_sales_tax(company)
|