-
-
Notifications
You must be signed in to change notification settings - Fork 797
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
15 additions
and
71 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# -*- encoding: utf-8 -*- | ||
# -*- coding: utf-8 -*- | ||
############################################################################## | ||
# | ||
# OpenERP, Open Source Management Solution | ||
|
@@ -26,57 +26,7 @@ | |
'author': "Noviat,Odoo Community Association (OCA)", | ||
'website': 'http://www.noviat.com', | ||
'category': 'Reporting', | ||
'description': """ | ||
Excel report engine | ||
=================== | ||
This module adds Excel export capabilities to the standard odoo reporting | ||
engine. | ||
Report development | ||
'''''''''''''''''' | ||
In order to create an Excel report you can\n | ||
- define a report of type 'xls' | ||
- pass ``{'xls_export': 1}`` via the context to the report create method | ||
The ``report_xls`` class contains a number of attributes and methods to | ||
facilitate the creation XLS reports in OpenERP. | ||
* cell types | ||
Supported cell types : text, number, boolean, date. | ||
* cell styles | ||
The predefined cell style definitions result in a consistent | ||
look and feel of the OpenERP Excel reports. | ||
* cell formulas | ||
Cell formulas can be easily added with the help of the ``rowcol_to_cell()`` | ||
function which you can import from the ``utils.py`` module. | ||
* Excel templates | ||
It is possible to define Excel templates which can be adapted | ||
by 'inherited' modules. | ||
Download the ``account_move_line_report_xls`` module | ||
from http://apps.odoo.com as example. | ||
* XLS with multiple sheets | ||
Download the ``account_journal_report_xls`` module | ||
from http://apps.odoo.com as example. | ||
Development assistance | ||
'''''''''''''''''''''' | ||
Contact [email protected] for help with the development of | ||
Excel reports in odoo. | ||
""", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
||
'depends': ['base'], | ||
'external_dependencies': {'python': ['xlwt']}, | ||
'active': False, | ||
'installable': True, | ||
} | ||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
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
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
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
1 comment
on commit b02cc1c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uhm, it seems to be a forgotten git add --all
command. I'll fix it.
this change broke the Runbot builds of all repositories depending on report_xls, as it triggers a warning for the lack of description / README.rst file 😿