odoo-addon-account-move-line-report-xls 15.0.1.0.0.4__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.
Files changed (24) hide show
  1. odoo/addons/account_move_line_report_xls/README.rst +108 -0
  2. odoo/addons/account_move_line_report_xls/__init__.py +11 -0
  3. odoo/addons/account_move_line_report_xls/__manifest__.py +15 -0
  4. odoo/addons/account_move_line_report_xls/i18n/account_move_line_report_xls.pot +227 -0
  5. odoo/addons/account_move_line_report_xls/i18n/es.po +230 -0
  6. odoo/addons/account_move_line_report_xls/i18n/fr.po +260 -0
  7. odoo/addons/account_move_line_report_xls/i18n/nl.po +260 -0
  8. odoo/addons/account_move_line_report_xls/models/__init__.py +1 -0
  9. odoo/addons/account_move_line_report_xls/models/account_move_line.py +60 -0
  10. odoo/addons/account_move_line_report_xls/readme/CONTRIBUTORS.rst +1 -0
  11. odoo/addons/account_move_line_report_xls/readme/DESCRIPTION.rst +2 -0
  12. odoo/addons/account_move_line_report_xls/readme/USAGE.rst +27 -0
  13. odoo/addons/account_move_line_report_xls/report/__init__.py +1 -0
  14. odoo/addons/account_move_line_report_xls/report/account_move_line_xlsx.py +405 -0
  15. odoo/addons/account_move_line_report_xls/report/account_move_line_xlsx.xml +15 -0
  16. odoo/addons/account_move_line_report_xls/static/description/icon.png +0 -0
  17. odoo/addons/account_move_line_report_xls/static/description/icon.svg +79 -0
  18. odoo/addons/account_move_line_report_xls/static/description/index.html +452 -0
  19. odoo/addons/account_move_line_report_xls/tests/__init__.py +1 -0
  20. odoo/addons/account_move_line_report_xls/tests/test_aml_report_xlsx.py +32 -0
  21. odoo_addon_account_move_line_report_xls-15.0.1.0.0.4.dist-info/METADATA +127 -0
  22. odoo_addon_account_move_line_report_xls-15.0.1.0.0.4.dist-info/RECORD +24 -0
  23. odoo_addon_account_move_line_report_xls-15.0.1.0.0.4.dist-info/WHEEL +5 -0
  24. odoo_addon_account_move_line_report_xls-15.0.1.0.0.4.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,11 @@
1
+ from . import models
2
+
3
+ try:
4
+ from . import report
5
+ except ImportError:
6
+ import logging
7
+
8
+ logging.getLogger("odoo.module").warning(
9
+ """report_xlsx_helper not available in addons path.
10
+ account_move_line_report_xls will not be usable"""
11
+ )
@@ -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,230 @@
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
+ "PO-Revision-Date: 2024-03-21 20:35+0000\n"
10
+ "Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
11
+ "Language-Team: none\n"
12
+ "Language: es\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: \n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Weblate 4.17\n"
18
+
19
+ #. module: account_move_line_report_xls
20
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
21
+ #, python-format
22
+ msgid "Account"
23
+ msgstr "Cuenta"
24
+
25
+ #. module: account_move_line_report_xls
26
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
27
+ #, python-format
28
+ msgid "Am. Currency"
29
+ msgstr "Im. Divisa"
30
+
31
+ #. module: account_move_line_report_xls
32
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
33
+ #, python-format
34
+ msgid "Analytic Account"
35
+ msgstr "Cuenta Analítica"
36
+
37
+ #. module: account_move_line_report_xls
38
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
39
+ #, python-format
40
+ msgid "Analytic Account Reference"
41
+ msgstr "Cuenta Analítica Referencia"
42
+
43
+ #. module: account_move_line_report_xls
44
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
45
+ #, python-format
46
+ msgid "Balance"
47
+ msgstr "Saldo"
48
+
49
+ #. module: account_move_line_report_xls
50
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
51
+ #, python-format
52
+ msgid "Comp. Curr."
53
+ msgstr "Calc. Div."
54
+
55
+ #. module: account_move_line_report_xls
56
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
57
+ #, python-format
58
+ msgid "Credit"
59
+ msgstr "Crédito"
60
+
61
+ #. module: account_move_line_report_xls
62
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
63
+ #, python-format
64
+ msgid "Curr."
65
+ msgstr "Div."
66
+
67
+ #. module: account_move_line_report_xls
68
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
69
+ #, python-format
70
+ msgid "Debit"
71
+ msgstr "Débito"
72
+
73
+ #. module: account_move_line_report_xls
74
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
75
+ #, python-format
76
+ msgid "Effective Date"
77
+ msgstr "Fecha Efectiva"
78
+
79
+ #. module: account_move_line_report_xls
80
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
81
+ #, python-format
82
+ msgid "Entry"
83
+ msgstr "Entrada"
84
+
85
+ #. module: account_move_line_report_xls
86
+ #: model:ir.actions.report,name:account_move_line_report_xls.action_account_move_line_xlsx
87
+ msgid "Export Selected Lines"
88
+ msgstr "Exportar Líneas Seleccionadas"
89
+
90
+ #. module: account_move_line_report_xls
91
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
92
+ #, python-format
93
+ msgid "Id"
94
+ msgstr "Id"
95
+
96
+ #. module: account_move_line_report_xls
97
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
98
+ #, python-format
99
+ msgid "Invoice"
100
+ msgstr "Factura"
101
+
102
+ #. module: account_move_line_report_xls
103
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
104
+ #, python-format
105
+ msgid "Journal"
106
+ msgstr "Diario"
107
+
108
+ #. module: account_move_line_report_xls
109
+ #: model:ir.model,name:account_move_line_report_xls.model_account_move_line
110
+ msgid "Journal Item"
111
+ msgstr ""
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 Items"
117
+ msgstr ""
118
+
119
+ #. module: account_move_line_report_xls
120
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
121
+ #, python-format
122
+ msgid "Lit."
123
+ msgstr ""
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 "Matched Credits"
129
+ msgstr ""
130
+
131
+ #. module: account_move_line_report_xls
132
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
133
+ #, python-format
134
+ msgid "Matched Debits"
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 "Maturity Date"
141
+ msgstr ""
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 "Name"
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 "Notes"
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 "Partner"
159
+ msgstr ""
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 "Partner Reference"
165
+ msgstr ""
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 "Product"
171
+ msgstr ""
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 "Product Reference"
177
+ msgstr ""
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 "Qty"
183
+ msgstr ""
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 "Rec."
189
+ msgstr ""
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 "Reconcile Amount"
195
+ msgstr ""
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 "Reference"
201
+ msgstr ""
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 "Res. Am. in Curr."
207
+ msgstr ""
208
+
209
+ #. module: account_move_line_report_xls
210
+ #: code:addons/account_move_line_report_xls/report/account_move_line_xlsx.py:0
211
+ #, python-format
212
+ msgid "Residual Amount"
213
+ msgstr ""
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 "Statement"
219
+ msgstr ""
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 "Unit of Measure"
225
+ msgstr ""
226
+
227
+ #. module: account_move_line_report_xls
228
+ #: model:ir.model,name:account_move_line_report_xls.model_report_account_move_line_report_xls_account_move_line_xlsx
229
+ msgid "XLSX report for account move lines."
230
+ msgstr ""