Skip to content

Commit

Permalink
Primer commit del libro de IVA Digital
Browse files Browse the repository at this point in the history
  • Loading branch information
morrillo committed Apr 22, 2020
1 parent a06374b commit 15b842f
Show file tree
Hide file tree
Showing 8 changed files with 754 additions and 0 deletions.
30 changes: 30 additions & 0 deletions l10n_ar_account_iva_digital/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License

Libro de IVA Digital
====================
Libro de IVA Digital

Configuration
=============

TODO

Usage
=====

TODO

Know issues / Roadmap
=====================

TODO

Credits
=======

Contributors
------------

* TODO

5 changes: 5 additions & 0 deletions l10n_ar_account_iva_digital/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################
from . import models
25 changes: 25 additions & 0 deletions l10n_ar_account_iva_digital/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "Libro de IVA Digital",
'version': '13.0.1.1.0',
'category': 'Localization/Argentina',
'sequence': 14,
'author': 'Moldeo Interactive,ADHOC SA,Moldeo Interactive,Odoo Community Association (OCA)',
'license': 'AGPL-3',
'summary': '',
"depends": [
"l10n_ar","l10n_ar_account_vat_ledger",
],
'external_dependencies': {
},
"data": [
'views/account_document_type_view.xml',
'views/account_vat_report_view.xml',
],
'demo': [
],
'images': [
],
'installable': True,
'auto_install': True,
'application': False,
}
6 changes: 6 additions & 0 deletions l10n_ar_account_iva_digital/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################
from . import account_vat_ledger
from . import account_document_type
15 changes: 15 additions & 0 deletions l10n_ar_account_iva_digital/models/account_document_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
##############################################################################
# For copyright and license notices, see __manifest__.py file in module root
# directory
##############################################################################
from odoo import models, fields
import logging
_logger = logging.getLogger(__name__)


class L10nLatamDocumentType(models.Model):
_inherit = "l10n_latam.document.type"

export_to_digital = fields.Boolean(
help='Seleccionar para que este documento sea importado en el Libro IVA Digital'
)

0 comments on commit 15b842f

Please sign in to comment.