Skip to content

Commit

Permalink
Merge PR #373 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed Dec 22, 2023
2 parents 4f34b27 + 805e2ea commit ad8d51a
Show file tree
Hide file tree
Showing 20 changed files with 1,584 additions and 0 deletions.
80 changes: 80 additions & 0 deletions account_avatax_exemption_base/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
======================
Avatax Exemptions Base
======================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6c20a3d4ab3129313aa0b3a0fc5d6864f1eb817dd61ee1074e1a5abdac395923
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--fiscal--rule-lightgray.png?logo=github
:target: https://github.com/OCA/account-fiscal-rule/tree/14.0/account_avatax_exemption_base
:alt: OCA/account-fiscal-rule
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-fiscal-rule-14-0/account-fiscal-rule-14-0-account_avatax_exemption_base
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-fiscal-rule&target_branch=14.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module is a component of the Avatax Exemption Integration with odoo app and it is used as an anchor module for account_avatax_exemption to add support for odoo enterprise module such as sign and document extension.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-fiscal-rule/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/account-fiscal-rule/issues/new?body=module:%20account_avatax_exemption_base%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Sodexis

Contributors
~~~~~~~~~~~~

* Sodexis

* Atchuthan Ubendran <[email protected]>
* Stephan Keller <[email protected]>
* SodexisTeam <[email protected]>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

This module is part of the `OCA/account-fiscal-rule <https://github.com/OCA/account-fiscal-rule/tree/14.0/account_avatax_exemption_base>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions account_avatax_exemption_base/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
23 changes: 23 additions & 0 deletions account_avatax_exemption_base/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "Avatax Exemptions Base",
"version": "16.0.1.0.0",
"category": "Sales",
"summary": """
This application allows you to add exemptions base to Avatax
""",
"website": "https://github.com/OCA/account-fiscal-rule",
"author": "Sodexis, Odoo Community Association (OCA)",
"license": "LGPL-3",
"depends": [
"mail",
"account",
],
"data": [
"security/ir.model.access.csv",
"data/ir_sequence_data.xml",
"views/res_country_state_view.xml",
"views/avalara_exemption_view.xml",
],
"installable": True,
"application": False,
}
9 changes: 9 additions & 0 deletions account_avatax_exemption_base/data/ir_sequence_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<odoo noupdate="1">
<record id="seq_exemption_line" model="ir.sequence">
<field name="name">Exemption Line Sequence</field>
<field name="code">exemption.line.sequence</field>
<field name="prefix">CERT</field>
<field name="padding">5</field>
<field name="company_id" eval="False" />
</record>
</odoo>
Loading

0 comments on commit ad8d51a

Please sign in to comment.