forked from OCA/account-fiscal-rule
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
187 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
This module was originally developed by Frabrice Henrion at Odoo SA. | ||
This module was originally developed by Frabrice Henrion at Odoo SA, | ||
and maintained up to version 11. | ||
|
||
Upon release od Odoo 12, Fabrice and Odoo SA stopped supporting the module, | ||
and invited Odoo partners to maintain it. | ||
For version 12, Fabrice invited partners to migrate this modules to | ||
later version, and maintain it. | ||
|
||
Open Source Integrators decided to contribute the module to the OCA, | ||
on the Odoo 13 refactoring. | ||
Open Source Integrators performed the migration to Odoo 12 | ||
, and later added support for the more up to date REST API | ||
, alongside with the legacy SOAP API. | ||
|
||
For previous Odoo versions, from Odoo 9 to Odoo 12, the code is | ||
maintained at https://github.com/sodexis/avatax_connector. | ||
With the addition of the REST API, a deep refactor was introduced, | ||
changing the tax calculation approach, from just setting the total | ||
tax amount, to instead adding the tax rates to each document line | ||
and then having Odoo do all the other computations. | ||
|
||
For Odoo 13, the legacy SOAP support was supported, and | ||
additional refactoring was done to contribute the module | ||
to the odoo Community Association. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink | ||
access_avalara_salestax_manager,avalara.salestax.manager,model_avalara_salestax,account.group_account_manager,1,1,1,1 | ||
access_avalara_salestax_employee,avalara.salestax.employee,model_avalara_salestax,base.group_user,1,0,0,0 | ||
access_product_tax_code employee,product.tax.code.employee,model_product_tax_code,base.group_user,1,0,0,0 | ||
access_product_tax_code manager,product.tax.code.manager,model_product_tax_code,account.group_account_manager,1,1,1,1 | ||
access_exemption_code manager,exemption.code.manager,model_exemption_code,account.group_account_manager,1,1,1,1 | ||
access_exemption_code employee,exemption.code.employee,model_exemption_code,base.group_user,1,0,0,0 | ||
access_product_tax_code_employee,product.tax.code.employee,model_product_tax_code,base.group_user,1,0,0,0 | ||
access_product_tax_code_manager,product.tax.code.manager,model_product_tax_code,account.group_account_manager,1,1,1,1 | ||
access_exemption_code_manager,exemption.code.manager,model_exemption_code,account.group_account_manager,1,1,1,1 | ||
access_exemption_code_employee,exemption.code.employee,model_exemption_code,base.group_user,1,0,0,0 | ||
access_avalara_salestax_ping,avalara_salestax_ping,model_avalara_salestax_ping,base.group_user,1,1,1,1 | ||
access_avalara_salestax_address_validate,avalara_salestax_address_validate,model_avalara_salestax_address_validate,base.group_user,1,1,1,1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from . import account_move | ||
from . import partner | ||
from . import sale_order | ||
from . import avalara_salestax |
Oops, something went wrong.