-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove tax codes because we can't create them as in l10n_fr because the code must be unique and we don't want this module to depend on l10n_fr. And this module is designed for the OCA VAT return, so we don't need them.
- Loading branch information
1 parent
da5d40e
commit b5a518b
Showing
11 changed files
with
776 additions
and
1,826 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,8 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<data noupdate="1"> | ||
<function model="account.chart.template" name="try_loading"> | ||
<value eval="[ref('l10n_fr_oca.l10n_fr_pcg_chart_template')]" /> | ||
</function> | ||
</data> | ||
<odoo noupdate="1"> | ||
<function model="account.chart.template" name="try_loading"> | ||
<value eval="[ref('l10n_fr_oca.l10n_fr_pcg_chart_template')]" /> | ||
</function> | ||
</odoo> |
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,31 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<data noupdate="1"> | ||
<odoo noupdate="1"> | ||
|
||
<!-- Account Tax Group --> | ||
<record id="tax_group_tva_0" model="account.tax.group"> | ||
<field name="name">TVA 0%</field> | ||
</record> | ||
<!-- Account Tax Group --> | ||
<record id="tax_group_tva_0" model="account.tax.group"> | ||
<field name="name">TVA 0%</field> | ||
</record> | ||
|
||
<record id="tax_group_tva_20" model="account.tax.group"> | ||
<field name="name">TVA 20%</field> | ||
</record> | ||
<record id="tax_group_tva_20" model="account.tax.group"> | ||
<field name="name">TVA 20%</field> | ||
</record> | ||
|
||
<record id="tax_group_tva_85" model="account.tax.group"> | ||
<field name="name">TVA 8,5%</field> | ||
</record> | ||
<record id="tax_group_tva_85" model="account.tax.group"> | ||
<field name="name">TVA 8,5%</field> | ||
</record> | ||
|
||
<record id="tax_group_tva_55" model="account.tax.group"> | ||
<field name="name">TVA 5,5%</field> | ||
</record> | ||
<record id="tax_group_tva_55" model="account.tax.group"> | ||
<field name="name">TVA 5,5%</field> | ||
</record> | ||
|
||
<record id="tax_group_tva_10" model="account.tax.group"> | ||
<field name="name">TVA 10%</field> | ||
</record> | ||
<record id="tax_group_tva_10" model="account.tax.group"> | ||
<field name="name">TVA 10%</field> | ||
</record> | ||
|
||
<record id="tax_group_tva_21" model="account.tax.group"> | ||
<field name="name">TVA 2,1%</field> | ||
</record> | ||
<record id="tax_group_tva_21" model="account.tax.group"> | ||
<field name="name">TVA 2,1%</field> | ||
</record> | ||
|
||
</data> | ||
</odoo> |
Oops, something went wrong.