Merge pull request #65 from luc-demeyer/80-aml_report_xls-update

[8.0] account_move_line_report_xls description update
pull/72/merge
Yannick Vaucher 2015-03-30 13:57:08 +02:00
commit c4d1738d4f
6 changed files with 145 additions and 6 deletions

View File

@ -21,7 +21,6 @@
from datetime import date from datetime import date
from openerp.osv import orm, fields from openerp.osv import orm, fields
from openerp.tools import DEFAULT_SERVER_DATE_FORMAT as DATE_FORMAT from openerp.tools import DEFAULT_SERVER_DATE_FORMAT as DATE_FORMAT
from openerp.tools.translate import _
class AccountAgedTrialBalance(orm.TransientModel): class AccountAgedTrialBalance(orm.TransientModel):

View File

@ -1,3 +1,6 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License
Journal Items Excel Export Journal Items Excel Export
========================== ==========================
@ -7,10 +10,10 @@ This module extends the functionality of the journal items
Installation Installation
============ ============
To install this module manually, you need also the **report_xls** To install this module, you need also the **report_xls**
module located in: module located in:
https://launchpad.net/openerp-reporting-engines https://github.com/OCA/reporting-engine
Usage Usage
===== =====
@ -18,7 +21,7 @@ Usage
To use this module, you need to: To use this module, you need to:
* go to the list view of the journal items * go to the list view of the journal items
* select the line you wish to export * select the lines you wish to export
* click on the button on top to export * click on the button on top to export
The Excel export can be tailored to your exact needs via the following methods The Excel export can be tailored to your exact needs via the following methods
@ -46,9 +49,12 @@ of the 'account.move.line' object:
Credits Credits
======= =======
Author
------------
* Luc De Meyer, Noviat <info@noviat.com>
Contributors Contributors
------------ ------------
* Noviat <info@noviat.com>
* Guillaume Auger <guillaume.auger@savoirfairelinux.com> * Guillaume Auger <guillaume.auger@savoirfairelinux.com>
Icon Icon

View File

@ -24,8 +24,9 @@
'name': 'Account Move Line XLS export', 'name': 'Account Move Line XLS export',
'version': '0.6', 'version': '0.6',
'license': 'AGPL-3', 'license': 'AGPL-3',
'author': "Noviat,Odoo Community Association (OCA)", 'author': "Noviat, Odoo Community Association (OCA)",
'category': 'Accounting & Finance', 'category': 'Accounting & Finance',
'summary': 'Journal Items Excel export',
'depends': ['account', 'report_xls'], 'depends': ['account', 'report_xls'],
'data': [ 'data': [
'report/move_line_list_xls.xml', 'report/move_line_list_xls.xml',

View File

@ -0,0 +1,133 @@
<data>
<section class="oe_container">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<h2 class="oe_slogan">Journal Items Excel export</h2>
</div>
<div class="oe_span6">
<div class="oe_demo oe_picture oe_screenshot">
<img src="journal_items.png"/>
</div>
</div>
<div class="oe_span6">
<p class="oe_mt32">
This module extends the functionality of the journal items ('account.move.line') list view and allow you to export the selected lines.
</p>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<h2 class="oe_slogan">Installation &amp; Usage</h2>
<p class="oe_mt32">
To install this module, you need also the <b>report_xls</b> module located in:
<br/><a href="https://github.com/OCA/reporting-engine">https://github.com/OCA/reporting-engine</a>
</p>
<p class="oe_mt32">
To use this module, you need to:
<ul>
<li>go to the list view of the journal items</li>
<li>select the lines you wish to export</li>
<li>click on the button on top to export</li>
</ul>
</p>
<p class="oe_mt32">
The Excel export can be tailored to your exact needs via the following methods of the 'account.move.line' object:
<ul>
<li>
<b>_report_xls_fields</b>
<div style="padding-top:10px">
Add/drop columns or change order from the list of columns that are defined in the Excel template.
<br>
The following fields are available:
<div style="margin-left:40px">
<code>
move, name, date, journal, period, partner, account,
<br/>
date_maturity, debit, credit, balance,
<br/>
reconcile, reconcile_partial, analytic_account,
<br/>
ref, partner_ref, tax_code, tax_amount, amount_residual,
<br/>
amount_currency, currency_name, company_currency,
<br/>
amount_residual_currency, product, product_ref', product_uom, quantity,
<br/>statement, invoice, narration, blocked
</code>
</div>
</div>
</li>
</ul>
</p>
<p class="oe_mt32">
<ul>
<li>
<b>_report_xls_template</b>
<div style="padding-top:10px">
Change/extend the Excel template.
</div>
</li>
</ul>
</p>
</div>
</div>
</section>
<section class="oe_container">
<div class="oe_row oe_spaced">
<h2 class="oe_slogan">Credits</h2>
<div class="oe_span6">
<p class="oe_mt32">
Author:
<ul>
<li>
<a href="mailto:info@noviat.com">Luc De Meyer (Noviat)</a>
</li>
</ul>
</p>
</div>
<div class="oe_span6">
<p class="oe_mt32">
Contributors:
<ul>
<li>
<a href="mailto:guillaume.auger@savoirfairelinux.com">Guillaume Auger, Savoir-faire LINUX</a>
</li>
</ul>
</p>
</div>
</div>
</section>
<section class="oe_container oe_dark">
<div class="oe_row oe_spaced">
<div class="oe_span12">
<h2 class="oe_slogan">Maintainer</h2>
</div>
<div class="oe_span8">
<p class="oe_mt32">
This module is maintained by the OCA.
</p>
<p>
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.
</p>
<p>
To contribute to this module, please visit <a href="http://odoo-community.org">http://odoo-community.org.</a>
</p>
</div>
<div class="oe_span4">
<a href="http://odoo-community.org">
<div class="oe_picture">
<img src="oca_logo.png"/>
</div>
</a>
</div>
</div>
</section>
</data>

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB