Skip to content

Commit

Permalink
[FIX+IMP] account_fiscal_year_closing
Browse files Browse the repository at this point in the history
* Included template mechanism
* Remove unused files
* Fix behaviors
* Some refactoring
  • Loading branch information
pedrobaeza authored and yajo committed Jul 10, 2017
1 parent dbc8ca9 commit 4369ae3
Show file tree
Hide file tree
Showing 30 changed files with 1,808 additions and 759 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Expand Up @@ -21,16 +21,14 @@ env:
matrix:
- LINT_CHECK="1"
- TRANSIFEX="1"
- TESTS="1" ODOO_REPO="odoo/odoo"
- TESTS="1" ODOO_REPO="OCA/OCB"
- TESTS="1" ODOO_REPO="odoo/odoo"

virtualenv:
system_site_packages: true

install:
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- git clone https://github.com/OCA/account-financial-tools ${HOME}/account-financial-tools -b ${VERSION}
- git clone https://github.com/OCA/webkit-tools ${HOME}/webkit-tools -b ${VERSION}
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
- travis_install_nightly

Expand Down
16 changes: 7 additions & 9 deletions account_fiscal_year_closing/README.rst
Expand Up @@ -6,15 +6,12 @@
Fiscal year closing
===================

This module implements a generic fiscal year closing for those countries
where closing and opening moves are mandatory in accounting books.
This module implements a generic fiscal year closing system for those
countries where closing/opening moves or other kind of closing operations are
mandatory in accounting books.

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

To install this module, you need to:

#. Do this ...
It includes a template mechanism that can be used in localizations for
providing the possible configurations to be used by the closing engine.

Configuration
=============
Expand All @@ -38,7 +35,8 @@ To use this module, you need to:
Known issues / Roadmap
======================

* ...
* When selecting a closing template, not all data are transferred to the
closing for now.

Bug Tracker
===========
Expand Down
9 changes: 3 additions & 6 deletions account_fiscal_year_closing/__openerp__.py
Expand Up @@ -18,11 +18,8 @@
"data": [
"security/account_fiscalyear_closing_security.xml",
"security/ir.model.access.csv",
"views/account_fiscalyear_closing_view.xml",
"views/account_fiscalyear_closing_mapping_view.xml",
"views/account_fiscalyear_closing_type_view.xml",
"views/account_fiscalyear_closing_config_view.xml",
"views/account_move_view.xml",
"views/account_move_line_view.xml",
"views/account_fiscalyear_closing_views.xml",
"views/account_fiscalyear_closing_template_views.xml",
"views/account_move_views.xml",
],
}
Empty file.
626 changes: 626 additions & 0 deletions account_fiscal_year_closing/i18n/es.po

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions account_fiscal_year_closing/models/__init__.py
@@ -1,8 +1,7 @@
# -*- coding: utf-8 -*-

from . import account_fiscalyear_closing_abstract
from . import account_fiscalyear_closing
from . import account_fiscalyear_closing_config
from . import account_fiscalyear_closing_mapping
from . import account_fiscalyear_closing_type
from . import account_fiscalyear_closing_template
from . import account_move
from . import account_move_line

0 comments on commit 4369ae3

Please sign in to comment.