Skip to content

Commit

Permalink
Merge a82d7e0 into 5dd3a80
Browse files Browse the repository at this point in the history
  • Loading branch information
renatonlima committed Mar 16, 2020
2 parents 5dd3a80 + a82d7e0 commit 833c7c6
Show file tree
Hide file tree
Showing 255 changed files with 49,923 additions and 45 deletions.
5 changes: 5 additions & 0 deletions .codeclimate.yml
@@ -0,0 +1,5 @@
languages:
JavaScript: true
Python: true
exclude_paths:
- "__unported__/*"
17 changes: 17 additions & 0 deletions .coveragerc
@@ -0,0 +1,17 @@
# Config file .coveragerc

[report]
include =
*/l10n-brazil/*

omit =
*/tests/*
*__init__.py

# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover

# Don't complain about null context checking
if context is None:
53 changes: 53 additions & 0 deletions .gitignore
@@ -1,2 +1,55 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
bin/
build/
develop-eggs/
dist/
eggs/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo

# Pycharm
.idea

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

# Rope
.ropeproject

# Sphinx documentation
docs/_build/

# Backup files
*~
*.swp
2 changes: 1 addition & 1 deletion .isort.cfg
@@ -1,2 +1,2 @@
[settings]
known_third_party = dateutil,erpbrasil,odoo,openerp,pytz,requests,setuptools,workalendar
known_third_party = OpenSSL,dateutil,erpbrasil,lxml,odoo,openupgradelib,requests,setuptools
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -14,6 +14,7 @@ addons:
- libxml2-dev
- libxmlsec1-dev
- libxslt-dev
- swig

env:
global:
Expand All @@ -30,6 +31,8 @@ install:
- git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly
- pip install -q coverage==4.5.4
- pip install -q QUnitSuite codecov coveralls

script:
- travis_run_tests
Expand Down
78 changes: 78 additions & 0 deletions l10n_br_account/README.rst
@@ -0,0 +1,78 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

==========================================
Módulo Informações Contabéis
==========================================

This module was written to extend the functionality of ... to support ...
and allow you to ...

Installation
============

To install this module, you need to:

* do this ...

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

To configure this module, you need to:

* go to ...

Usage
=====

To use this module, you need to:

* go to ...

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/{repo_id}/{branch}


.. repo_id is available in https://github.com/OCA/maintainer-tools/blob/master/tools/repos_with_ids.txt
.. branch is "8.0" for example
Known issues / Roadmap
======================

TODO

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

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


Credits
=======

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

* add contributors

Maintainer
----------

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

This module is maintained by the OCA.

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.

To contribute to this module, please visit http://odoo-community.org.
8 changes: 8 additions & 0 deletions l10n_br_account/__init__.py
@@ -0,0 +1,8 @@
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

from .hooks import pre_init_hook
from .hooks import post_init_hook
from . import models
from . import wizards
# from . import report
from . import tests
41 changes: 41 additions & 0 deletions l10n_br_account/__manifest__.py
@@ -0,0 +1,41 @@
# Copyright (C) 2009 - TODAY Renato Lima - Akretion
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

{
"name": "Brazilian Localization Account",
"category": "Localisation",
"license": "AGPL-3",
"author": "Akretion, Odoo Community Association (OCA)",
"website": "http://github.com/OCA/l10n-brazil",
"version": "12.0.1.0.0",
"depends": ["account_cancel", "l10n_br_simple", "l10n_br_fiscal"],
"data": [
# security
'security/ir.model.access.csv',

# data
"data/l10n_br_account_tax_data.xml",
"data/l10n_br_account_tax_group_data.xml",

# Views
"views/account_tax_view.xml",
"views/account_tax_template_view.xml",
"views/fiscal_tax_group_view.xml",
"views/fiscal_operation_view.xml",
'views/fiscal_operation_line_view.xml',
'views/account_invoice_view.xml',
'views/account_invoice_line_view.xml',
# 'report/account_invoice_report_view.xml',

# Wizards
'wizards/account_invoice_refund_view.xml',
],
"demo": [
"demo/l10n_br_account_journal_demo.xml",
"demo/l10n_br_fiscal_operation_demo.xml"
],
"pre_init_hook": "pre_init_hook",
"post_init_hook": "post_init_hook",
"installable": True,
"auto_install": False,
}

0 comments on commit 833c7c6

Please sign in to comment.