odoo-addon-account-move-line-report-xls 15.0.1.0.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_move_line_report_xls/README.rst +108 -0
- odoo/addons/account_move_line_report_xls/__init__.py +11 -0
- odoo/addons/account_move_line_report_xls/__manifest__.py +15 -0
- odoo/addons/account_move_line_report_xls/i18n/account_move_line_report_xls.pot +227 -0
- odoo/addons/account_move_line_report_xls/i18n/fr.po +260 -0
- odoo/addons/account_move_line_report_xls/i18n/nl.po +260 -0
- odoo/addons/account_move_line_report_xls/models/__init__.py +1 -0
- odoo/addons/account_move_line_report_xls/models/account_move_line.py +60 -0
- odoo/addons/account_move_line_report_xls/readme/CONTRIBUTORS.rst +1 -0
- odoo/addons/account_move_line_report_xls/readme/DESCRIPTION.rst +2 -0
- odoo/addons/account_move_line_report_xls/readme/USAGE.rst +27 -0
- odoo/addons/account_move_line_report_xls/report/__init__.py +1 -0
- odoo/addons/account_move_line_report_xls/report/account_move_line_xlsx.py +405 -0
- odoo/addons/account_move_line_report_xls/report/account_move_line_xlsx.xml +15 -0
- odoo/addons/account_move_line_report_xls/static/description/icon.png +0 -0
- odoo/addons/account_move_line_report_xls/static/description/icon.svg +79 -0
- odoo/addons/account_move_line_report_xls/static/description/index.html +452 -0
- odoo/addons/account_move_line_report_xls/tests/__init__.py +1 -0
- odoo/addons/account_move_line_report_xls/tests/test_aml_report_xlsx.py +32 -0
- odoo_addon_account_move_line_report_xls-15.0.1.0.0.2.dist-info/METADATA +127 -0
- odoo_addon_account_move_line_report_xls-15.0.1.0.0.2.dist-info/RECORD +23 -0
- odoo_addon_account_move_line_report_xls-15.0.1.0.0.2.dist-info/WHEEL +5 -0
- odoo_addon_account_move_line_report_xls-15.0.1.0.0.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
=============================
|
|
2
|
+
Account Move Line XLSX export
|
|
3
|
+
=============================
|
|
4
|
+
|
|
5
|
+
..
|
|
6
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
7
|
+
!! This file is generated by oca-gen-addon-readme !!
|
|
8
|
+
!! changes will be overwritten. !!
|
|
9
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
+
!! source digest: sha256:585fb4c438ac263d7904ecbdcae3a45c8ab9b0c126a164b7df9bd2a10ec7fc55
|
|
11
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
|
+
|
|
13
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
|
+
:target: https://odoo-community.org/page/development-status
|
|
15
|
+
:alt: Beta
|
|
16
|
+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
|
17
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
|
+
:alt: License: AGPL-3
|
|
19
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--reporting-lightgray.png?logo=github
|
|
20
|
+
:target: https://github.com/OCA/account-financial-reporting/tree/15.0/account_move_line_report_xls
|
|
21
|
+
:alt: OCA/account-financial-reporting
|
|
22
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
23
|
+
:target: https://translation.odoo-community.org/projects/account-financial-reporting-15-0/account-financial-reporting-15-0-account_move_line_report_xls
|
|
24
|
+
:alt: Translate me on Weblate
|
|
25
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
26
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-reporting&target_branch=15.0
|
|
27
|
+
:alt: Try me on Runboat
|
|
28
|
+
|
|
29
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
30
|
+
|
|
31
|
+
This module extends the functionality of the journal items
|
|
32
|
+
('account.move.line') list view and allow you to export the selected lines.
|
|
33
|
+
|
|
34
|
+
**Table of contents**
|
|
35
|
+
|
|
36
|
+
.. contents::
|
|
37
|
+
:local:
|
|
38
|
+
|
|
39
|
+
Usage
|
|
40
|
+
=====
|
|
41
|
+
|
|
42
|
+
To use this module, you need to:
|
|
43
|
+
|
|
44
|
+
* go to the list view of the journal items
|
|
45
|
+
* select the lines you wish to export
|
|
46
|
+
* click on the button on top to export
|
|
47
|
+
|
|
48
|
+
The Excel export can be tailored to your exact needs via the following methods
|
|
49
|
+
of the 'account.move.line' object:
|
|
50
|
+
|
|
51
|
+
* **_report_xlsx_fields**
|
|
52
|
+
|
|
53
|
+
Add/drop columns or change order from the list of columns that are defined
|
|
54
|
+
in the Excel template.
|
|
55
|
+
|
|
56
|
+
The following fields are defined in the Excel template:
|
|
57
|
+
|
|
58
|
+
move, name, date, journal, period, partner, account,
|
|
59
|
+
date_maturity, debit, credit, balance,
|
|
60
|
+
reconcile, reconcile_partial, analytic_account,
|
|
61
|
+
ref, partner_ref, tax_code, tax_amount, amount_residual,
|
|
62
|
+
amount_currency, currency_name, company_currency,
|
|
63
|
+
amount_residual_currency, product, product_ref', product_uom, quantity,
|
|
64
|
+
statement, invoice, narration, blocked
|
|
65
|
+
|
|
66
|
+
* **_report_xlsx_template**
|
|
67
|
+
|
|
68
|
+
Change/extend the Excel template.
|
|
69
|
+
|
|
70
|
+
Bug Tracker
|
|
71
|
+
===========
|
|
72
|
+
|
|
73
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-financial-reporting/issues>`_.
|
|
74
|
+
In case of trouble, please check there if your issue has already been reported.
|
|
75
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
76
|
+
`feedback <https://github.com/OCA/account-financial-reporting/issues/new?body=module:%20account_move_line_report_xls%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
77
|
+
|
|
78
|
+
Do not contact contributors directly about support or help with technical issues.
|
|
79
|
+
|
|
80
|
+
Credits
|
|
81
|
+
=======
|
|
82
|
+
|
|
83
|
+
Authors
|
|
84
|
+
~~~~~~~
|
|
85
|
+
|
|
86
|
+
* Noviat
|
|
87
|
+
|
|
88
|
+
Contributors
|
|
89
|
+
~~~~~~~~~~~~
|
|
90
|
+
|
|
91
|
+
* Luc De Meyer <luc.demeyer@noviat.com>
|
|
92
|
+
|
|
93
|
+
Maintainers
|
|
94
|
+
~~~~~~~~~~~
|
|
95
|
+
|
|
96
|
+
This module is maintained by the OCA.
|
|
97
|
+
|
|
98
|
+
.. image:: https://odoo-community.org/logo.png
|
|
99
|
+
:alt: Odoo Community Association
|
|
100
|
+
:target: https://odoo-community.org
|
|
101
|
+
|
|
102
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
103
|
+
mission is to support the collaborative development of Odoo features and
|
|
104
|
+
promote its widespread use.
|
|
105
|
+
|
|
106
|
+
This module is part of the `OCA/account-financial-reporting <https://github.com/OCA/account-financial-reporting/tree/15.0/account_move_line_report_xls>`_ project on GitHub.
|
|
107
|
+
|
|
108
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Copyright 2009-2020 Noviat.
|
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
3
|
+
|
|
4
|
+
{
|
|
5
|
+
"name": "Account Move Line XLSX export",
|
|
6
|
+
"version": "15.0.1.0.0",
|
|
7
|
+
"license": "AGPL-3",
|
|
8
|
+
"author": "Noviat, Odoo Community Association (OCA)",
|
|
9
|
+
"category": "Accounting & Finance",
|
|
10
|
+
"website": "https://github.com/OCA/account-financial-reporting",
|
|
11
|
+
"summary": "Journal Items Excel export",
|
|
12
|
+
"depends": ["account", "report_xlsx_helper"],
|
|
13
|
+
"data": ["report/account_move_line_xlsx.xml"],
|
|
14
|
+
"installable": True,
|
|
15
|
+
}
|
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * account_move_line_report_xls
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 15.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"Last-Translator: \n"
|
|
10
|
+
"Language-Team: \n"
|
|
11
|
+
"MIME-Version: 1.0\n"
|
|
12
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
13
|
+
"Content-Transfer-Encoding: \n"
|
|
14
|
+
"Plural-Forms: \n"
|
|
15
|
+
|
|
16
|
+
#. module: account_move_line_report_xls
|
|
17
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
18
|
+
#, python-format
|
|
19
|
+
msgid "Account"
|
|
20
|
+
msgstr ""
|
|
21
|
+
|
|
22
|
+
#. module: account_move_line_report_xls
|
|
23
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
24
|
+
#, python-format
|
|
25
|
+
msgid "Am. Currency"
|
|
26
|
+
msgstr ""
|
|
27
|
+
|
|
28
|
+
#. module: account_move_line_report_xls
|
|
29
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
30
|
+
#, python-format
|
|
31
|
+
msgid "Analytic Account"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#. module: account_move_line_report_xls
|
|
35
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
36
|
+
#, python-format
|
|
37
|
+
msgid "Analytic Account Reference"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#. module: account_move_line_report_xls
|
|
41
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
42
|
+
#, python-format
|
|
43
|
+
msgid "Balance"
|
|
44
|
+
msgstr ""
|
|
45
|
+
|
|
46
|
+
#. module: account_move_line_report_xls
|
|
47
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
48
|
+
#, python-format
|
|
49
|
+
msgid "Comp. Curr."
|
|
50
|
+
msgstr ""
|
|
51
|
+
|
|
52
|
+
#. module: account_move_line_report_xls
|
|
53
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
54
|
+
#, python-format
|
|
55
|
+
msgid "Credit"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#. module: account_move_line_report_xls
|
|
59
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
60
|
+
#, python-format
|
|
61
|
+
msgid "Curr."
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
64
|
+
#. module: account_move_line_report_xls
|
|
65
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
66
|
+
#, python-format
|
|
67
|
+
msgid "Debit"
|
|
68
|
+
msgstr ""
|
|
69
|
+
|
|
70
|
+
#. module: account_move_line_report_xls
|
|
71
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
72
|
+
#, python-format
|
|
73
|
+
msgid "Effective Date"
|
|
74
|
+
msgstr ""
|
|
75
|
+
|
|
76
|
+
#. module: account_move_line_report_xls
|
|
77
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
78
|
+
#, python-format
|
|
79
|
+
msgid "Entry"
|
|
80
|
+
msgstr ""
|
|
81
|
+
|
|
82
|
+
#. module: account_move_line_report_xls
|
|
83
|
+
#: model:ir.actions.report,name:account_move_line_report_xls.action_account_move_line_xlsx
|
|
84
|
+
msgid "Export Selected Lines"
|
|
85
|
+
msgstr ""
|
|
86
|
+
|
|
87
|
+
#. module: account_move_line_report_xls
|
|
88
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
89
|
+
#, python-format
|
|
90
|
+
msgid "Id"
|
|
91
|
+
msgstr ""
|
|
92
|
+
|
|
93
|
+
#. module: account_move_line_report_xls
|
|
94
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
95
|
+
#, python-format
|
|
96
|
+
msgid "Invoice"
|
|
97
|
+
msgstr ""
|
|
98
|
+
|
|
99
|
+
#. module: account_move_line_report_xls
|
|
100
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
101
|
+
#, python-format
|
|
102
|
+
msgid "Journal"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
105
|
+
#. module: account_move_line_report_xls
|
|
106
|
+
#: model:ir.model,name:account_move_line_report_xls.model_account_move_line
|
|
107
|
+
msgid "Journal Item"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
#. module: account_move_line_report_xls
|
|
111
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
112
|
+
#, python-format
|
|
113
|
+
msgid "Journal Items"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
#. module: account_move_line_report_xls
|
|
117
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
118
|
+
#, python-format
|
|
119
|
+
msgid "Lit."
|
|
120
|
+
msgstr ""
|
|
121
|
+
|
|
122
|
+
#. module: account_move_line_report_xls
|
|
123
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
124
|
+
#, python-format
|
|
125
|
+
msgid "Matched Credits"
|
|
126
|
+
msgstr ""
|
|
127
|
+
|
|
128
|
+
#. module: account_move_line_report_xls
|
|
129
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
130
|
+
#, python-format
|
|
131
|
+
msgid "Matched Debits"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
#. module: account_move_line_report_xls
|
|
135
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
136
|
+
#, python-format
|
|
137
|
+
msgid "Maturity Date"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
#. module: account_move_line_report_xls
|
|
141
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
142
|
+
#, python-format
|
|
143
|
+
msgid "Name"
|
|
144
|
+
msgstr ""
|
|
145
|
+
|
|
146
|
+
#. module: account_move_line_report_xls
|
|
147
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
148
|
+
#, python-format
|
|
149
|
+
msgid "Notes"
|
|
150
|
+
msgstr ""
|
|
151
|
+
|
|
152
|
+
#. module: account_move_line_report_xls
|
|
153
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
154
|
+
#, python-format
|
|
155
|
+
msgid "Partner"
|
|
156
|
+
msgstr ""
|
|
157
|
+
|
|
158
|
+
#. module: account_move_line_report_xls
|
|
159
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
160
|
+
#, python-format
|
|
161
|
+
msgid "Partner Reference"
|
|
162
|
+
msgstr ""
|
|
163
|
+
|
|
164
|
+
#. module: account_move_line_report_xls
|
|
165
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
166
|
+
#, python-format
|
|
167
|
+
msgid "Product"
|
|
168
|
+
msgstr ""
|
|
169
|
+
|
|
170
|
+
#. module: account_move_line_report_xls
|
|
171
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
172
|
+
#, python-format
|
|
173
|
+
msgid "Product Reference"
|
|
174
|
+
msgstr ""
|
|
175
|
+
|
|
176
|
+
#. module: account_move_line_report_xls
|
|
177
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
178
|
+
#, python-format
|
|
179
|
+
msgid "Qty"
|
|
180
|
+
msgstr ""
|
|
181
|
+
|
|
182
|
+
#. module: account_move_line_report_xls
|
|
183
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
184
|
+
#, python-format
|
|
185
|
+
msgid "Rec."
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
188
|
+
#. module: account_move_line_report_xls
|
|
189
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
190
|
+
#, python-format
|
|
191
|
+
msgid "Reconcile Amount"
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#. module: account_move_line_report_xls
|
|
195
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
196
|
+
#, python-format
|
|
197
|
+
msgid "Reference"
|
|
198
|
+
msgstr ""
|
|
199
|
+
|
|
200
|
+
#. module: account_move_line_report_xls
|
|
201
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
202
|
+
#, python-format
|
|
203
|
+
msgid "Res. Am. in Curr."
|
|
204
|
+
msgstr ""
|
|
205
|
+
|
|
206
|
+
#. module: account_move_line_report_xls
|
|
207
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
208
|
+
#, python-format
|
|
209
|
+
msgid "Residual Amount"
|
|
210
|
+
msgstr ""
|
|
211
|
+
|
|
212
|
+
#. module: account_move_line_report_xls
|
|
213
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
214
|
+
#, python-format
|
|
215
|
+
msgid "Statement"
|
|
216
|
+
msgstr ""
|
|
217
|
+
|
|
218
|
+
#. module: account_move_line_report_xls
|
|
219
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
220
|
+
#, python-format
|
|
221
|
+
msgid "Unit of Measure"
|
|
222
|
+
msgstr ""
|
|
223
|
+
|
|
224
|
+
#. module: account_move_line_report_xls
|
|
225
|
+
#: model:ir.model,name:account_move_line_report_xls.model_report_account_move_line_report_xls_account_move_line_xlsx
|
|
226
|
+
msgid "XLSX report for account move lines."
|
|
227
|
+
msgstr ""
|
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
# French translation of Odoo.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * account_move_line_report_xls
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 8.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"POT-Creation-Date: 2016-05-16 12:31:16.568000\n"
|
|
10
|
+
"PO-Revision-Date: 2016-05-16 12:31:16.568000\n"
|
|
11
|
+
"Last-Translator: Luc De Meyer (Noviat nv/sa)\n"
|
|
12
|
+
"Language-Team: \n"
|
|
13
|
+
"Language: \n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
17
|
+
|
|
18
|
+
#. module: account_move_line_report_xls
|
|
19
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
20
|
+
#, python-format
|
|
21
|
+
msgid "Account"
|
|
22
|
+
msgstr "Compte"
|
|
23
|
+
|
|
24
|
+
#. module: account_move_line_report_xls
|
|
25
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
26
|
+
#, python-format
|
|
27
|
+
msgid "Am. Currency"
|
|
28
|
+
msgstr "Montant devise"
|
|
29
|
+
|
|
30
|
+
#. module: account_move_line_report_xls
|
|
31
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
32
|
+
#, python-format
|
|
33
|
+
msgid "Analytic Account"
|
|
34
|
+
msgstr "Compte analytique"
|
|
35
|
+
|
|
36
|
+
#. module: account_move_line_report_xls
|
|
37
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
38
|
+
#, python-format
|
|
39
|
+
msgid "Analytic Account Reference"
|
|
40
|
+
msgstr "Référence compte analytique"
|
|
41
|
+
|
|
42
|
+
#. module: account_move_line_report_xls
|
|
43
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
44
|
+
#, python-format
|
|
45
|
+
msgid "Balance"
|
|
46
|
+
msgstr "Solde"
|
|
47
|
+
|
|
48
|
+
#. module: account_move_line_report_xls
|
|
49
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
50
|
+
#, python-format
|
|
51
|
+
msgid "Comp. Curr."
|
|
52
|
+
msgstr "Dev. Soc."
|
|
53
|
+
|
|
54
|
+
#. module: account_move_line_report_xls
|
|
55
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
56
|
+
#, python-format
|
|
57
|
+
msgid "Credit"
|
|
58
|
+
msgstr "Crédit"
|
|
59
|
+
|
|
60
|
+
#. module: account_move_line_report_xls
|
|
61
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
62
|
+
#, python-format
|
|
63
|
+
msgid "Curr."
|
|
64
|
+
msgstr "Dev."
|
|
65
|
+
|
|
66
|
+
#. module: account_move_line_report_xls
|
|
67
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
68
|
+
#, python-format
|
|
69
|
+
msgid "Debit"
|
|
70
|
+
msgstr "Débit"
|
|
71
|
+
|
|
72
|
+
#. module: account_move_line_report_xls
|
|
73
|
+
#: model:ir.model.fields,field_description:account_move_line_report_xls.field_account_move_line__display_name
|
|
74
|
+
#: model:ir.model.fields,field_description:account_move_line_report_xls.field_report_account_move_line_report_xls_account_move_line_xlsx__display_name
|
|
75
|
+
msgid "Display Name"
|
|
76
|
+
msgstr ""
|
|
77
|
+
|
|
78
|
+
#. module: account_move_line_report_xls
|
|
79
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
80
|
+
#, python-format
|
|
81
|
+
msgid "Effective Date"
|
|
82
|
+
msgstr "Date"
|
|
83
|
+
|
|
84
|
+
#. module: account_move_line_report_xls
|
|
85
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
86
|
+
#, python-format
|
|
87
|
+
msgid "Entry"
|
|
88
|
+
msgstr "Écriture"
|
|
89
|
+
|
|
90
|
+
#. module: account_move_line_report_xls
|
|
91
|
+
#: model:ir.actions.report,name:account_move_line_report_xls.action_account_move_line_xlsx
|
|
92
|
+
msgid "Export Selected Lines"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
#. module: account_move_line_report_xls
|
|
96
|
+
#: model:ir.model.fields,field_description:account_move_line_report_xls.field_account_move_line__id
|
|
97
|
+
#: model:ir.model.fields,field_description:account_move_line_report_xls.field_report_account_move_line_report_xls_account_move_line_xlsx__id
|
|
98
|
+
msgid "ID"
|
|
99
|
+
msgstr ""
|
|
100
|
+
|
|
101
|
+
#. module: account_move_line_report_xls
|
|
102
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
103
|
+
#, python-format
|
|
104
|
+
msgid "Id"
|
|
105
|
+
msgstr ""
|
|
106
|
+
|
|
107
|
+
#. module: account_move_line_report_xls
|
|
108
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
109
|
+
#, python-format
|
|
110
|
+
msgid "Invoice"
|
|
111
|
+
msgstr "Facture"
|
|
112
|
+
|
|
113
|
+
#. module: account_move_line_report_xls
|
|
114
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
115
|
+
#, python-format
|
|
116
|
+
msgid "Journal"
|
|
117
|
+
msgstr "Journal"
|
|
118
|
+
|
|
119
|
+
#. module: account_move_line_report_xls
|
|
120
|
+
#: model:ir.model,name:account_move_line_report_xls.model_account_move_line
|
|
121
|
+
#, fuzzy
|
|
122
|
+
msgid "Journal Item"
|
|
123
|
+
msgstr "Écritures comptables"
|
|
124
|
+
|
|
125
|
+
#. module: account_move_line_report_xls
|
|
126
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
127
|
+
#, python-format
|
|
128
|
+
msgid "Journal Items"
|
|
129
|
+
msgstr "Écritures comptables"
|
|
130
|
+
|
|
131
|
+
#. module: account_move_line_report_xls
|
|
132
|
+
#: model:ir.model.fields,field_description:account_move_line_report_xls.field_account_move_line____last_update
|
|
133
|
+
#: model:ir.model.fields,field_description:account_move_line_report_xls.field_report_account_move_line_report_xls_account_move_line_xlsx____last_update
|
|
134
|
+
msgid "Last Modified on"
|
|
135
|
+
msgstr ""
|
|
136
|
+
|
|
137
|
+
#. module: account_move_line_report_xls
|
|
138
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
139
|
+
#, python-format
|
|
140
|
+
msgid "Lit."
|
|
141
|
+
msgstr "Lit."
|
|
142
|
+
|
|
143
|
+
#. module: account_move_line_report_xls
|
|
144
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
145
|
+
#, python-format
|
|
146
|
+
msgid "Matched Credits"
|
|
147
|
+
msgstr ""
|
|
148
|
+
|
|
149
|
+
#. module: account_move_line_report_xls
|
|
150
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
151
|
+
#, python-format
|
|
152
|
+
msgid "Matched Debits"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
#. module: account_move_line_report_xls
|
|
156
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
157
|
+
#, python-format
|
|
158
|
+
msgid "Maturity Date"
|
|
159
|
+
msgstr "Date d'échéance"
|
|
160
|
+
|
|
161
|
+
#. module: account_move_line_report_xls
|
|
162
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
163
|
+
#, python-format
|
|
164
|
+
msgid "Name"
|
|
165
|
+
msgstr "Nom"
|
|
166
|
+
|
|
167
|
+
#. module: account_move_line_report_xls
|
|
168
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
169
|
+
#, python-format
|
|
170
|
+
msgid "Notes"
|
|
171
|
+
msgstr "Notes"
|
|
172
|
+
|
|
173
|
+
#. module: account_move_line_report_xls
|
|
174
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
175
|
+
#, python-format
|
|
176
|
+
msgid "Partner"
|
|
177
|
+
msgstr "Partenaire"
|
|
178
|
+
|
|
179
|
+
#. module: account_move_line_report_xls
|
|
180
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
181
|
+
#, python-format
|
|
182
|
+
msgid "Partner Reference"
|
|
183
|
+
msgstr "Réf. Partenaire"
|
|
184
|
+
|
|
185
|
+
#. module: account_move_line_report_xls
|
|
186
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
187
|
+
#, python-format
|
|
188
|
+
msgid "Product"
|
|
189
|
+
msgstr "Article"
|
|
190
|
+
|
|
191
|
+
#. module: account_move_line_report_xls
|
|
192
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
193
|
+
#, python-format
|
|
194
|
+
msgid "Product Reference"
|
|
195
|
+
msgstr "Réf. Article"
|
|
196
|
+
|
|
197
|
+
#. module: account_move_line_report_xls
|
|
198
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
199
|
+
#, python-format
|
|
200
|
+
msgid "Qty"
|
|
201
|
+
msgstr "Qty"
|
|
202
|
+
|
|
203
|
+
#. module: account_move_line_report_xls
|
|
204
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
205
|
+
#, python-format
|
|
206
|
+
msgid "Rec."
|
|
207
|
+
msgstr "Let."
|
|
208
|
+
|
|
209
|
+
#. module: account_move_line_report_xls
|
|
210
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
211
|
+
#, fuzzy, python-format
|
|
212
|
+
msgid "Reconcile Amount"
|
|
213
|
+
msgstr "Montant résiduel"
|
|
214
|
+
|
|
215
|
+
#. module: account_move_line_report_xls
|
|
216
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
217
|
+
#, python-format
|
|
218
|
+
msgid "Reference"
|
|
219
|
+
msgstr "Référence"
|
|
220
|
+
|
|
221
|
+
#. module: account_move_line_report_xls
|
|
222
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
223
|
+
#, python-format
|
|
224
|
+
msgid "Res. Am. in Curr."
|
|
225
|
+
msgstr "Montant résiduel en dev."
|
|
226
|
+
|
|
227
|
+
#. module: account_move_line_report_xls
|
|
228
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
229
|
+
#, python-format
|
|
230
|
+
msgid "Residual Amount"
|
|
231
|
+
msgstr "Montant résiduel"
|
|
232
|
+
|
|
233
|
+
#. module: account_move_line_report_xls
|
|
234
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
235
|
+
#, python-format
|
|
236
|
+
msgid "Statement"
|
|
237
|
+
msgstr "Relevé"
|
|
238
|
+
|
|
239
|
+
#. module: account_move_line_report_xls
|
|
240
|
+
#: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
|
|
241
|
+
#, python-format
|
|
242
|
+
msgid "Unit of Measure"
|
|
243
|
+
msgstr "Unité de mesure"
|
|
244
|
+
|
|
245
|
+
#. module: account_move_line_report_xls
|
|
246
|
+
#: model:ir.model,name:account_move_line_report_xls.model_report_account_move_line_report_xls_account_move_line_xlsx
|
|
247
|
+
msgid "XLSX report for account move lines."
|
|
248
|
+
msgstr ""
|
|
249
|
+
|
|
250
|
+
#~ msgid "Period"
|
|
251
|
+
#~ msgstr "Période"
|
|
252
|
+
|
|
253
|
+
#~ msgid "Part. Rec."
|
|
254
|
+
#~ msgstr "Let. Part."
|
|
255
|
+
|
|
256
|
+
#~ msgid "Tax Code"
|
|
257
|
+
#~ msgstr "Case TVA"
|
|
258
|
+
|
|
259
|
+
#~ msgid "Tax/Base Amount"
|
|
260
|
+
#~ msgstr "Montant TVA/Base"
|