diff --git a/account_tax_hide/README.rst b/account_tax_hide/README.rst new file mode 100644 index 00000000..223ea891 --- /dev/null +++ b/account_tax_hide/README.rst @@ -0,0 +1,61 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +====================== +Hide taxes (invoicing) +====================== + +In many legislations, NOGs and charities are exempt from paying VAT and related taxes. + +This module allows you to hide all taxes concerned with invoicing by default and adds a user group for users that do need to work with taxes. + +Configuration +============= + +By default, taxes are hidden for all users. If you need to re-enable them for some users, add them to the group `Accounting & Finance/Show taxes` + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/160/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Holger Brunn + +Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list `_ or the `appropriate specialized mailinglist `_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/account_tax_hide/__init__.py b/account_tax_hide/__init__.py new file mode 100644 index 00000000..fa85807b --- /dev/null +++ b/account_tax_hide/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/account_tax_hide/__openerp__.py b/account_tax_hide/__openerp__.py new file mode 100644 index 00000000..90567c62 --- /dev/null +++ b/account_tax_hide/__openerp__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Hide taxes (invoicing)", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Accounting & Finance", + "summary": "Hide taxes for most employees", + "depends": [ + 'account', + ], + "data": [ + "views/account_move.xml", + "views/account_move_line.xml", + "security/res_groups.xml", + "data/ir_ui_menu.xml", + "views/product_template.xml", + "views/account_invoice.xml", + ], +} diff --git a/account_tax_hide/data/ir_ui_menu.xml b/account_tax_hide/data/ir_ui_menu.xml new file mode 100644 index 00000000..51b20824 --- /dev/null +++ b/account_tax_hide/data/ir_ui_menu.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/account_tax_hide/security/res_groups.xml b/account_tax_hide/security/res_groups.xml new file mode 100644 index 00000000..d2397b8c --- /dev/null +++ b/account_tax_hide/security/res_groups.xml @@ -0,0 +1,9 @@ + + + + + + Show taxes + + + diff --git a/account_tax_hide/static/description/icon.png b/account_tax_hide/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/account_tax_hide/static/description/icon.png differ diff --git a/account_tax_hide/views/account_invoice.xml b/account_tax_hide/views/account_invoice.xml new file mode 100644 index 00000000..4f1ccad0 --- /dev/null +++ b/account_tax_hide/views/account_invoice.xml @@ -0,0 +1,47 @@ + + + + + account.invoice + + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + + + account.invoice + + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + + + diff --git a/account_tax_hide/views/account_move.xml b/account_tax_hide/views/account_move.xml new file mode 100644 index 00000000..865492d2 --- /dev/null +++ b/account_tax_hide/views/account_move.xml @@ -0,0 +1,20 @@ + + + + + account.move + + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + + + diff --git a/account_tax_hide/views/account_move_line.xml b/account_tax_hide/views/account_move_line.xml new file mode 100644 index 00000000..7bbc22ac --- /dev/null +++ b/account_tax_hide/views/account_move_line.xml @@ -0,0 +1,14 @@ + + + + + account.move.line + + + + account_tax_hide.group_show_taxes + + + + + diff --git a/account_tax_hide/views/product_template.xml b/account_tax_hide/views/product_template.xml new file mode 100644 index 00000000..ed364d70 --- /dev/null +++ b/account_tax_hide/views/product_template.xml @@ -0,0 +1,17 @@ + + + + + product.template + + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + + + diff --git a/sale_tax_hide/README.rst b/sale_tax_hide/README.rst new file mode 100644 index 00000000..9bd4e254 --- /dev/null +++ b/sale_tax_hide/README.rst @@ -0,0 +1,61 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +========== +Hide taxes +========== + +In many legislations, NOGs and charities are exempt from paying VAT and related taxes. + +This module allows you to hide all taxes concerned with sales by default and adds a user group for users that do need to work with taxes. + +Configuration +============= + +By default, taxes are hidden for all users. If you need to re-enable them for some users, add them to the group `Accounting & Finance/Show taxes` + +Usage +===== + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/160/8.0 + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues +`_. In case of trouble, please +check there if your issue has already been reported. If you spotted it first, +help us smashing it by providing a detailed and welcomed feedback. + +Credits +======= + +Images +------ + +* Odoo Community Association: `Icon `_. + +Contributors +------------ + +* Holger Brunn + +Do not contact contributors directly about help with questions or problems concerning this addon, but use the `community mailing list `_ or the `appropriate specialized mailinglist `_ for help, and the bug tracker linked in `Bug Tracker`_ above for technical issues. + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +To contribute to this module, please visit https://odoo-community.org. diff --git a/sale_tax_hide/__init__.py b/sale_tax_hide/__init__.py new file mode 100644 index 00000000..fa85807b --- /dev/null +++ b/sale_tax_hide/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/sale_tax_hide/__openerp__.py b/sale_tax_hide/__openerp__.py new file mode 100644 index 00000000..68d0c4cc --- /dev/null +++ b/sale_tax_hide/__openerp__.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# © 2016 Therp BV +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Hide taxes (sales)", + "version": "8.0.1.0.0", + "author": "Therp BV,Odoo Community Association (OCA)", + "license": "AGPL-3", + "category": "Accounting & Finance", + "summary": "Hide taxes for most employees", + "depends": [ + 'sale', + 'account_tax_hide', + ], + "data": [ + "views/sale_order.xml", + ], +} diff --git a/sale_tax_hide/static/description/icon.png b/sale_tax_hide/static/description/icon.png new file mode 100644 index 00000000..3a0328b5 Binary files /dev/null and b/sale_tax_hide/static/description/icon.png differ diff --git a/sale_tax_hide/views/sale_order.xml b/sale_tax_hide/views/sale_order.xml new file mode 100644 index 00000000..1f62d920 --- /dev/null +++ b/sale_tax_hide/views/sale_order.xml @@ -0,0 +1,29 @@ + + + + + sale.order + + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + account_tax_hide.group_show_taxes + + + + +