diff --git a/account_move_line_report_xls/README.rst b/account_move_line_report_xls/README.rst index 0addbd45..624644ca 100644 --- a/account_move_line_report_xls/README.rst +++ b/account_move_line_report_xls/README.rst @@ -7,10 +7,10 @@ This module extends the functionality of the journal items 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: -https://launchpad.net/openerp-reporting-engines +https://github.com/OCA/reporting-engine Usage ===== @@ -18,7 +18,7 @@ Usage To use this module, you need to: * 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 The Excel export can be tailored to your exact needs via the following methods @@ -46,9 +46,12 @@ of the 'account.move.line' object: Credits ======= +Author +------------ +* Luc De Meyer, Noviat + Contributors ------------ -* Noviat * Guillaume Auger Icon diff --git a/account_move_line_report_xls/__openerp__.py b/account_move_line_report_xls/__openerp__.py index a4d7d0e9..685ffafa 100644 --- a/account_move_line_report_xls/__openerp__.py +++ b/account_move_line_report_xls/__openerp__.py @@ -24,8 +24,9 @@ 'name': 'Account Move Line XLS export', 'version': '0.6', 'license': 'AGPL-3', - 'author': "Noviat,Odoo Community Association (OCA)", + 'author': "Noviat, Odoo Community Association (OCA)", 'category': 'Accounting & Finance', + 'summary': 'Journal Items Excel export', 'depends': ['account', 'report_xls'], 'data': [ 'report/move_line_list_xls.xml', diff --git a/account_move_line_report_xls/static/description/index.html b/account_move_line_report_xls/static/description/index.html new file mode 100644 index 00000000..a0fcca0a --- /dev/null +++ b/account_move_line_report_xls/static/description/index.html @@ -0,0 +1,133 @@ + + +
+
+
+

Journal Items Excel export

+
+
+
+ +
+
+
+

+ This module extends the functionality of the journal items ('account.move.line') list view and allow you to export the selected lines. +

+
+
+
+ +
+
+
+

Installation & Usage

+

+ To install this module, you need also the report_xls module located in: +
https://github.com/OCA/reporting-engine +

+

+ To use this module, you need to: +

    +
  • go to the list view of the journal items
  • +
  • select the lines you wish to export
  • +
  • click on the button on top to export
  • +
+

+

+ The Excel export can be tailored to your exact needs via the following methods of the 'account.move.line' object: +

    +
  • + _report_xls_fields +
    + Add/drop columns or change order from the list of columns that are defined in the Excel template. +
    + The following fields are available: +
    + + move, name, date, journal, period, partner, account, +
    + date_maturity, debit, credit, balance, +
    + reconcile, reconcile_partial, analytic_account, +
    + ref, partner_ref, tax_code, tax_amount, amount_residual, +
    + amount_currency, currency_name, company_currency, +
    + amount_residual_currency, product, product_ref', product_uom, quantity, +
    statement, invoice, narration, blocked +
    +
    +
    +
  • +
+

+

+

    +
  • + _report_xls_template +
    + Change/extend the Excel template. +
    +
  • +
+

+
+
+
+ +
+
+

Credits

+
+

+ Author: +

+

+
+
+

+ Contributors: +

+

+
+
+
+ +
+
+
+

Maintainer

+
+
+

+ 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. +

+
+ +
+
+ +
diff --git a/account_move_line_report_xls/static/description/journal_items.png b/account_move_line_report_xls/static/description/journal_items.png new file mode 100644 index 00000000..0dcacd2b Binary files /dev/null and b/account_move_line_report_xls/static/description/journal_items.png differ diff --git a/account_move_line_report_xls/static/description/oca_logo.png b/account_move_line_report_xls/static/description/oca_logo.png new file mode 100644 index 00000000..ef62eaf9 Binary files /dev/null and b/account_move_line_report_xls/static/description/oca_logo.png differ