Skip to content

Commit

Permalink
Merge 525ca40 into ec8882b
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieuchoplin committed Apr 16, 2015
2 parents ec8882b + 525ca40 commit 6f83454
Show file tree
Hide file tree
Showing 32 changed files with 605 additions and 521 deletions.
106 changes: 0 additions & 106 deletions __unported__/account_multicurrency_revaluation/__openerp__.py

This file was deleted.

73 changes: 0 additions & 73 deletions __unported__/account_multicurrency_revaluation/res_company.py

This file was deleted.

This file was deleted.

86 changes: 86 additions & 0 deletions __unported__/account_multicurrency_revaluation_report/README.rst
@@ -0,0 +1,86 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3

Multicurrency revaluation report
================================

This module was written to extend the functionality of the *Multicurrency
revaluation* module for additional reports.

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

To install this module, you need to:

* clone the branch 8.0 of the repository https://github.com/OCA/account-closing
* add the path to this repository in your configuration (addons-path)
* update the module list
* search for "Multicurrency revaluation report" in your addons
* install the module

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

See the configuration in the module "Multicurrency revaluation"

Usage
=====

In the menu open the report through the following menu:

Accounting/Reporting/Legal Reports/Accounting Reports/Print Currency Unrealized

Main Features
-------------

* A wizard to print a report of revaluation.


Known issues / Roadmap
======================

* The module depends on the module *base headers webkit* which is in work in
progress in this pull request: https://github.com/OCA/webkit-tools/pull/10

However, this PR has been blocked since September 2014 now by this issue:
https://github.com/odoo/odoo/issues/2334

And it is not sure if we are going to carry on with webkit or use the Qweb
reporting system now.


Credits
=======

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

* Alexandre Fayolle
* Alexis de Lattre
* Frédéric Clementi
* Guewen Baconnier @ Camptocamp
* Joel Grand-Guillaume
* Kinner Vachhani
* Matt Choplin
* Matthieu Dietrich
* moylop260
* Pedro M. Baeza
* Stéphane Bidoul
* Vincent Renaville
* Yannick Vaucher


Maintainer
----------

.. image:: http://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: http://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.
Expand Up @@ -19,9 +19,6 @@
#
##############################################################################

from . import res_company
from . import account
from . import res_currency
from . import wizard
from . import report

Expand Down
@@ -0,0 +1,38 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# Author: Yannick Vaucher
# Copyright 2012 Camptocamp SA
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

{"name": "Multicurrency Revaluation Report",
"version": "8.0.1.0.0",
"category": "Finance",
"author": "Camptocamp,Odoo Community Association (OCA)",
"license": 'AGPL-3',
"summary": "Module for printing reports that completes the module "
"Multicurrency Revaluation",
"depends": [
"account_multicurrency_revaluation",
"base_headers_webkit"
],
"data": [
"wizard/print_currency_unrealized_report_view.xml",
"report/report.xml"
],
'installable': False,
}
Expand Up @@ -18,9 +18,9 @@
#
##############################################################################

from report import report_sxw
from openerp.report import report_sxw
from openerp.tools.translate import _
import pooler
from openerp import pooler


class ShellAccount(object):
Expand Down
@@ -1,2 +1 @@
from . import wizard_currency_revaluation
from . import print_currency_unrealized_report

0 comments on commit 6f83454

Please sign in to comment.