forked from OCA/l10n-italy
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'refs/pull/2278/head' of https://github.com/OCA/l10n-italy…
… into 14.0-supermerge
- Loading branch information
Showing
33 changed files
with
7,704 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from . import models | ||
from . import wizard |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 2017 Alessandro Camilli - Openforce | ||
# Copyright 2017-2021 Lorenzo Battistini | ||
# Copyright 2019 Glauco Prina - Linkit | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "ITA - Comunicazione dati fatture", | ||
"summary": 'Comunicazione dati fatture (c.d. "nuovo spesometro" o ' | ||
'"esterometro")', | ||
"version": "14.0.1.0.0", | ||
"category": "Account", | ||
"author": "Openforce di Camilli Alessandro, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/l10n-italy", | ||
"license": "AGPL-3", | ||
"depends": [ | ||
"account", | ||
"l10n_it_fiscal_document_type", | ||
"l10n_it_appointment_code", | ||
"l10n_it_fiscalcode", | ||
"l10n_it_vat_payability", | ||
"l10n_it_account_tax_kind", | ||
"l10n_it_account", | ||
], | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"data/res_country_data.xml", | ||
"wizard/compute_fiscal_document_type_view.xml", | ||
"wizard/split_big_communication_view.xml", | ||
"views/comunicazione.xml", | ||
"views/account.xml", | ||
"views/account_invoice_view.xml", | ||
"views/res_country_view.xml", | ||
"wizard/export_file_view.xml", | ||
"security/security.xml", | ||
], | ||
"installable": True, | ||
} |
83 changes: 83 additions & 0 deletions
83
l10n_it_invoices_data_communication/data/res_country_data.xml
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<odoo> | ||
<data noupdate="1"> | ||
<record id="base.at" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.be" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.bg" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.hr" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.cy" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.cz" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.dk" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.ee" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.fi" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.fr" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.de" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.gr" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.hu" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.ie" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.it" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.lv" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.lt" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.lu" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.mt" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.nl" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.pl" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.pt" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.ro" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.sk" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.si" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
<record id="base.se" model="res.country"> | ||
<field name="intrastat">1</field> | ||
</record> | ||
</data> | ||
</odoo> |
Oops, something went wrong.