odoo-addon-l10n-es-atc-mod415 16.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/l10n_es_atc_mod415/README.rst +87 -0
- odoo/addons/l10n_es_atc_mod415/__init__.py +3 -0
- odoo/addons/l10n_es_atc_mod415/__manifest__.py +30 -0
- odoo/addons/l10n_es_atc_mod415/data/mail_template_data.xml +94 -0
- odoo/addons/l10n_es_atc_mod415/data/tax_code_map_mod415_data.xml +91 -0
- odoo/addons/l10n_es_atc_mod415/i18n/es.po +1687 -0
- odoo/addons/l10n_es_atc_mod415/i18n/l10n_es_atc_mod415.pot +1075 -0
- odoo/addons/l10n_es_atc_mod415/models/__init__.py +5 -0
- odoo/addons/l10n_es_atc_mod415/models/account_move.py +17 -0
- odoo/addons/l10n_es_atc_mod415/models/mod415.py +241 -0
- odoo/addons/l10n_es_atc_mod415/models/res_partner.py +24 -0
- odoo/addons/l10n_es_atc_mod415/readme/CONTRIBUTORS.rst +2 -0
- odoo/addons/l10n_es_atc_mod415/readme/DESCRIPTION.rst +3 -0
- odoo/addons/l10n_es_atc_mod415/readme/INSTALL.rst +0 -0
- odoo/addons/l10n_es_atc_mod415/security/ir.model.access.csv +5 -0
- odoo/addons/l10n_es_atc_mod415/security/mod_415_security.xml +9 -0
- odoo/addons/l10n_es_atc_mod415/static/description/icon.png +0 -0
- odoo/addons/l10n_es_atc_mod415/static/description/index.html +424 -0
- odoo/addons/l10n_es_atc_mod415/tests/__init__.py +3 -0
- odoo/addons/l10n_es_atc_mod415/tests/test_l10n_es_atc_mod415.py +213 -0
- odoo/addons/l10n_es_atc_mod415/views/account_move_view.xml +13 -0
- odoo/addons/l10n_es_atc_mod415/views/mod415_templates.xml +63 -0
- odoo/addons/l10n_es_atc_mod415/views/mod415_view.xml +137 -0
- odoo/addons/l10n_es_atc_mod415/views/report_415_partner.xml +22 -0
- odoo/addons/l10n_es_atc_mod415/views/res_partner_view.xml +18 -0
- odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/METADATA +108 -0
- odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/RECORD +29 -0
- odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/WHEEL +5 -0
- odoo_addon_l10n_es_atc_mod415-16.0.1.0.0.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1075 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * l10n_es_atc_mod415
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 16.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: l10n_es_atc_mod415
|
|
17
|
+
#: model:mail.template,body_html:l10n_es_atc_mod415.email_template_415
|
|
18
|
+
msgid ""
|
|
19
|
+
"\n"
|
|
20
|
+
"<p>Estimado/a <t t-out=\"object.partner_id.name\" />\n"
|
|
21
|
+
"</p>\n"
|
|
22
|
+
"<p>Le comunicamos que a efectos de comprobación del modelo 415:</p>\n"
|
|
23
|
+
"<p>Nuestros datos en dicha declaración son:</p>\n"
|
|
24
|
+
"<p>\n"
|
|
25
|
+
" <strong>Nombre:</strong> <t t-out=\"object.report_id.company_id.name\"/><br/>\n"
|
|
26
|
+
" <strong>NIF:</strong> <t t-out=\"object.report_id.company_id.vat or ''\"/><br/>\n"
|
|
27
|
+
" <strong>Provincia:</strong> <t t-out=\"object.report_id.company_id.state_id.name or ''\"/><br/>\n"
|
|
28
|
+
"</p>\n"
|
|
29
|
+
"<p>Los datos que vamos a declarar en relación a las operaciones habidas con su empresa son:</p>\n"
|
|
30
|
+
"<p>\n"
|
|
31
|
+
" <strong>Nombre:</strong> <t t-out=\"object.partner_id.name\"/><br/>\n"
|
|
32
|
+
" <strong>NIF:</strong> <t t-out=\"object.partner_vat\"/><br/>\n"
|
|
33
|
+
" <strong>Código de país:</strong> <t t-out=\"object.partner_country_code\"/><br/>\n"
|
|
34
|
+
" <strong>Código de provincia:</strong> <t t-out=\"object.partner_state_code\"/><br/>\n"
|
|
35
|
+
"</p>\n"
|
|
36
|
+
"<p>\n"
|
|
37
|
+
" <strong>Tipo de operación:</strong> <t t-out=\"object.operation_key\"/>\n"
|
|
38
|
+
"</p>\n"
|
|
39
|
+
"\n"
|
|
40
|
+
" <t t-if=\"object.amount\">\n"
|
|
41
|
+
" <p>\n"
|
|
42
|
+
" <strong>Importe de las operaciones:</strong> <t t-out=\"object.amount\"/><br/>\n"
|
|
43
|
+
" <strong>Operaciones primer trimestre:</strong> <t t-out=\"object.first_quarter\"/><br/>\n"
|
|
44
|
+
" <strong>Operaciones segundo trimestre:</strong> <t t-out=\"object.second_quarter\"/><br/>\n"
|
|
45
|
+
" <strong>Operaciones tercer trimestre:</strong> <t t-out=\"object.third_quarter\"/><br/>\n"
|
|
46
|
+
" <strong>Operaciones cuarto trimestre:</strong> <t t-out=\"object.fourth_quarter\"/><br/>\n"
|
|
47
|
+
" </p>\n"
|
|
48
|
+
" </t>\n"
|
|
49
|
+
" <t t-if=\"object.cash_amount\">\n"
|
|
50
|
+
" <p>\n"
|
|
51
|
+
" <strong>Importe recibido en efectivo:</strong> <t t-out=\"object.cash_amount\"/><br/>\n"
|
|
52
|
+
" </p>\n"
|
|
53
|
+
"</t>\n"
|
|
54
|
+
" <t t-if=\"object.real_estate_transmissions_amount\">\n"
|
|
55
|
+
" <p>\n"
|
|
56
|
+
" <strong>Importe de transmisión de inmueble:</strong> <t t-out=\"object.real_estate_transmissions_amount\"/><br/>\n"
|
|
57
|
+
" <strong>Inmuebles primer trimestre:</strong> <t t-out=\"object.first_quarter_real_estate_transmission\"/><br/>\n"
|
|
58
|
+
" <strong>Inmuebles segundo trimestre:</strong> <t t-out=\"object.second_quarter_real_estate_transmission\"/><br/>\n"
|
|
59
|
+
" <strong>Inmuebles tercer trimestre:</strong> <t t-out=\"object.third_quarter_real_estate_transmission\"/><br/>\n"
|
|
60
|
+
" <strong>Inmuebles cuarto trimestre:</strong> <t t-out=\"object.fourth_quarter_real_estate_transmission\"/><br/>\n"
|
|
61
|
+
" </p>\n"
|
|
62
|
+
"</t>\n"
|
|
63
|
+
" <p>En el documento adjunto se incluyen las facturas en base a las cuales se obtienen los importes anteriores.</p>\n"
|
|
64
|
+
" <p>Si los datos son correctos puede indicar su conformidad en el siguiente botón:</p>\n"
|
|
65
|
+
" <br><br>\n"
|
|
66
|
+
" <center>\n"
|
|
67
|
+
" <a style=\"background-color: #1abc9c; padding: 20px; text-decoration: none; color: #fff; border-radius: 5px; font-size: 16px;\" class=\"o_default_snippet_text\" t-att-href=\"object.get_confirm_url()\">\n"
|
|
68
|
+
" Aceptar datos del 415\n"
|
|
69
|
+
" </a>\n"
|
|
70
|
+
" </center>\n"
|
|
71
|
+
" <br><br>\n"
|
|
72
|
+
" <p>Si los importes no son correctos, puede pulsar en este botón para que nos pongamos en contacto posteriormente, o responder a este correo indicando el problema:</p>\n"
|
|
73
|
+
" <br><br>\n"
|
|
74
|
+
" <center>\n"
|
|
75
|
+
" <a style=\"background-color: #d55937; padding: 20px; text-decoration: none; color: #fff; border-radius: 5px; font-size: 16px;\" class=\"o_default_snippet_text\" t-att-href=\"object.get_reject_url()\">\n"
|
|
76
|
+
" Rechazar datos del 415\n"
|
|
77
|
+
" </a>\n"
|
|
78
|
+
" </center>\n"
|
|
79
|
+
" <br><br>\n"
|
|
80
|
+
" <p>Para cualquier otra pregunta, no dude en contactar con nosotros respondiendo a este correo.</p>\n"
|
|
81
|
+
"<p style=\"color:#888888\">\n"
|
|
82
|
+
" <t t-if=\"user and user.signature\">\n"
|
|
83
|
+
" <t t-out=\"user.signature\"/>\n"
|
|
84
|
+
" </t>\n"
|
|
85
|
+
"</p>\n"
|
|
86
|
+
"\n"
|
|
87
|
+
" "
|
|
88
|
+
msgstr ""
|
|
89
|
+
|
|
90
|
+
#. module: l10n_es_atc_mod415
|
|
91
|
+
#: model:ir.actions.report,name:l10n_es_atc_mod415.415_partner
|
|
92
|
+
msgid "415 Partner Detail"
|
|
93
|
+
msgstr ""
|
|
94
|
+
|
|
95
|
+
#. module: l10n_es_atc_mod415
|
|
96
|
+
#: model:mail.template,report_name:l10n_es_atc_mod415.email_template_415
|
|
97
|
+
msgid "415_details"
|
|
98
|
+
msgstr ""
|
|
99
|
+
|
|
100
|
+
#. module: l10n_es_atc_mod415
|
|
101
|
+
#: model:ir.model,name:l10n_es_atc_mod415.model_l10n_es_atc_mod415_report
|
|
102
|
+
msgid "ATC 415 Report"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
105
|
+
#. module: l10n_es_atc_mod415
|
|
106
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__access_warning
|
|
107
|
+
msgid "Access warning"
|
|
108
|
+
msgstr ""
|
|
109
|
+
|
|
110
|
+
#. module: l10n_es_atc_mod415
|
|
111
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__move_id
|
|
112
|
+
msgid "Account entry"
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
#. module: l10n_es_atc_mod415
|
|
116
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_needaction
|
|
117
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_needaction
|
|
118
|
+
msgid "Action Needed"
|
|
119
|
+
msgstr ""
|
|
120
|
+
|
|
121
|
+
#. module: l10n_es_atc_mod415
|
|
122
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_ids
|
|
123
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_ids
|
|
124
|
+
msgid "Activities"
|
|
125
|
+
msgstr ""
|
|
126
|
+
|
|
127
|
+
#. module: l10n_es_atc_mod415
|
|
128
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_exception_decoration
|
|
129
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_exception_decoration
|
|
130
|
+
msgid "Activity Exception Decoration"
|
|
131
|
+
msgstr ""
|
|
132
|
+
|
|
133
|
+
#. module: l10n_es_atc_mod415
|
|
134
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_state
|
|
135
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_state
|
|
136
|
+
msgid "Activity State"
|
|
137
|
+
msgstr ""
|
|
138
|
+
|
|
139
|
+
#. module: l10n_es_atc_mod415
|
|
140
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_type_icon
|
|
141
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_type_icon
|
|
142
|
+
msgid "Activity Type Icon"
|
|
143
|
+
msgstr ""
|
|
144
|
+
|
|
145
|
+
#. module: l10n_es_atc_mod415
|
|
146
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__address
|
|
147
|
+
msgid "Address"
|
|
148
|
+
msgstr ""
|
|
149
|
+
|
|
150
|
+
#. module: l10n_es_atc_mod415
|
|
151
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__address_type
|
|
152
|
+
msgid "Address Type"
|
|
153
|
+
msgstr ""
|
|
154
|
+
|
|
155
|
+
#. module: l10n_es_atc_mod415
|
|
156
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__allow_posting
|
|
157
|
+
msgid "Allow Posting"
|
|
158
|
+
msgstr ""
|
|
159
|
+
|
|
160
|
+
#. module: l10n_es_atc_mod415
|
|
161
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__amount
|
|
162
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__amount
|
|
163
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__total_amount
|
|
164
|
+
msgid "Amount"
|
|
165
|
+
msgstr ""
|
|
166
|
+
|
|
167
|
+
#. module: l10n_es_atc_mod415
|
|
168
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_attachment_count
|
|
169
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_attachment_count
|
|
170
|
+
msgid "Attachment Count"
|
|
171
|
+
msgstr ""
|
|
172
|
+
|
|
173
|
+
#. module: l10n_es_atc_mod415
|
|
174
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__partner_bank_id
|
|
175
|
+
msgid "Bank account"
|
|
176
|
+
msgstr ""
|
|
177
|
+
|
|
178
|
+
#. module: l10n_es_atc_mod415
|
|
179
|
+
#: model_terms:ir.actions.act_window,help:l10n_es_atc_mod415.action_l10n_es_atc_mod415_report
|
|
180
|
+
msgid ""
|
|
181
|
+
"Basado en la Orden EHA/3012/2008, de 20 de Octubre, por el que se aprueban\n"
|
|
182
|
+
" los diseños físicos y lógicos del 415."
|
|
183
|
+
msgstr ""
|
|
184
|
+
|
|
185
|
+
#. module: l10n_es_atc_mod415
|
|
186
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__block
|
|
187
|
+
msgid "Block"
|
|
188
|
+
msgstr ""
|
|
189
|
+
|
|
190
|
+
#. module: l10n_es_atc_mod415
|
|
191
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__bussiness_real_estate_rent
|
|
192
|
+
msgid "Bussiness Real Estate Rent"
|
|
193
|
+
msgstr ""
|
|
194
|
+
|
|
195
|
+
#. module: l10n_es_atc_mod415
|
|
196
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__calculation_date
|
|
197
|
+
msgid "Calculation Date"
|
|
198
|
+
msgstr ""
|
|
199
|
+
|
|
200
|
+
#. module: l10n_es_atc_mod415
|
|
201
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__total_cash_amount
|
|
202
|
+
msgid "Cash Amount"
|
|
203
|
+
msgstr ""
|
|
204
|
+
|
|
205
|
+
#. module: l10n_es_atc_mod415
|
|
206
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__cash_basis_operation
|
|
207
|
+
msgid "Cash Basis Operation"
|
|
208
|
+
msgstr ""
|
|
209
|
+
|
|
210
|
+
#. module: l10n_es_atc_mod415
|
|
211
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__cash_record_ids
|
|
212
|
+
msgid "Cash payments"
|
|
213
|
+
msgstr ""
|
|
214
|
+
|
|
215
|
+
#. module: l10n_es_atc_mod415
|
|
216
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__reference
|
|
217
|
+
msgid "Catastral Reference"
|
|
218
|
+
msgstr ""
|
|
219
|
+
|
|
220
|
+
#. module: l10n_es_atc_mod415
|
|
221
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__check_ok
|
|
222
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__check_ok
|
|
223
|
+
msgid "Checked if this record is OK"
|
|
224
|
+
msgstr ""
|
|
225
|
+
|
|
226
|
+
#. module: l10n_es_atc_mod415
|
|
227
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__city
|
|
228
|
+
msgid "City"
|
|
229
|
+
msgstr ""
|
|
230
|
+
|
|
231
|
+
#. module: l10n_es_atc_mod415
|
|
232
|
+
#: model_terms:ir.actions.act_window,help:l10n_es_atc_mod415.action_l10n_es_atc_mod415_report
|
|
233
|
+
msgid "Click to create a Modelo ATC 415 Reports."
|
|
234
|
+
msgstr ""
|
|
235
|
+
|
|
236
|
+
#. module: l10n_es_atc_mod415
|
|
237
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__community_vat
|
|
238
|
+
msgid "Community vat number"
|
|
239
|
+
msgstr ""
|
|
240
|
+
|
|
241
|
+
#. module: l10n_es_atc_mod415
|
|
242
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__company_id
|
|
243
|
+
msgid "Company"
|
|
244
|
+
msgstr ""
|
|
245
|
+
|
|
246
|
+
#. module: l10n_es_atc_mod415
|
|
247
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__partner_bank_id
|
|
248
|
+
msgid "Company bank account used for the presentation"
|
|
249
|
+
msgstr ""
|
|
250
|
+
|
|
251
|
+
#. module: l10n_es_atc_mod415
|
|
252
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__complement
|
|
253
|
+
msgid "Complement"
|
|
254
|
+
msgstr ""
|
|
255
|
+
|
|
256
|
+
#. module: l10n_es_atc_mod415
|
|
257
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__complement
|
|
258
|
+
msgid "Complement (urbanization, industrial park...)"
|
|
259
|
+
msgstr ""
|
|
260
|
+
|
|
261
|
+
#. module: l10n_es_atc_mod415
|
|
262
|
+
#: model:mail.template,subject:l10n_es_atc_mod415.email_template_415
|
|
263
|
+
msgid ""
|
|
264
|
+
"Comprobación datos de modelo 415 año {{object.report_id.year}} de "
|
|
265
|
+
"{{user.company_id.name}}"
|
|
266
|
+
msgstr ""
|
|
267
|
+
|
|
268
|
+
#. module: l10n_es_atc_mod415
|
|
269
|
+
#: model:mail.template,name:l10n_es_atc_mod415.email_template_415
|
|
270
|
+
msgid "Comprobación datos modelo 415"
|
|
271
|
+
msgstr ""
|
|
272
|
+
|
|
273
|
+
#. module: l10n_es_atc_mod415
|
|
274
|
+
#: model:ir.model,name:l10n_es_atc_mod415.model_res_partner
|
|
275
|
+
msgid "Contact"
|
|
276
|
+
msgstr ""
|
|
277
|
+
|
|
278
|
+
#. module: l10n_es_atc_mod415
|
|
279
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__contact_email
|
|
280
|
+
msgid "Contact Email"
|
|
281
|
+
msgstr ""
|
|
282
|
+
|
|
283
|
+
#. module: l10n_es_atc_mod415
|
|
284
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__counterpart_account_id
|
|
285
|
+
msgid "Counterpart account"
|
|
286
|
+
msgstr ""
|
|
287
|
+
|
|
288
|
+
#. module: l10n_es_atc_mod415
|
|
289
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__partner_country_code
|
|
290
|
+
msgid "Country Code"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
293
|
+
#. module: l10n_es_atc_mod415
|
|
294
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__create_uid
|
|
295
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__create_uid
|
|
296
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__create_uid
|
|
297
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__create_uid
|
|
298
|
+
msgid "Created by"
|
|
299
|
+
msgstr ""
|
|
300
|
+
|
|
301
|
+
#. module: l10n_es_atc_mod415
|
|
302
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__create_date
|
|
303
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__create_date
|
|
304
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__create_date
|
|
305
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__create_date
|
|
306
|
+
msgid "Created on"
|
|
307
|
+
msgstr ""
|
|
308
|
+
|
|
309
|
+
#. module: l10n_es_atc_mod415
|
|
310
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__currency_id
|
|
311
|
+
msgid "Currency"
|
|
312
|
+
msgstr ""
|
|
313
|
+
|
|
314
|
+
#. module: l10n_es_atc_mod415
|
|
315
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__access_url
|
|
316
|
+
msgid "Customer Portal URL"
|
|
317
|
+
msgstr ""
|
|
318
|
+
|
|
319
|
+
#. module: l10n_es_atc_mod415
|
|
320
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__date
|
|
321
|
+
msgid "Date"
|
|
322
|
+
msgstr ""
|
|
323
|
+
|
|
324
|
+
#. module: l10n_es_atc_mod415
|
|
325
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__display_name
|
|
326
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__display_name
|
|
327
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__display_name
|
|
328
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__display_name
|
|
329
|
+
msgid "Display Name"
|
|
330
|
+
msgstr ""
|
|
331
|
+
|
|
332
|
+
#. module: l10n_es_atc_mod415
|
|
333
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__door
|
|
334
|
+
msgid "Door"
|
|
335
|
+
msgstr ""
|
|
336
|
+
|
|
337
|
+
#. module: l10n_es_atc_mod415
|
|
338
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__date_end
|
|
339
|
+
msgid "Ending date"
|
|
340
|
+
msgstr ""
|
|
341
|
+
|
|
342
|
+
#. module: l10n_es_atc_mod415
|
|
343
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__error_count
|
|
344
|
+
msgid "Error Count"
|
|
345
|
+
msgstr ""
|
|
346
|
+
|
|
347
|
+
#. module: l10n_es_atc_mod415
|
|
348
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__error_text
|
|
349
|
+
msgid "Error Text"
|
|
350
|
+
msgstr ""
|
|
351
|
+
|
|
352
|
+
#. module: l10n_es_atc_mod415
|
|
353
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__error_text
|
|
354
|
+
msgid "Errors"
|
|
355
|
+
msgstr ""
|
|
356
|
+
|
|
357
|
+
#. module: l10n_es_atc_mod415
|
|
358
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__export_config_id
|
|
359
|
+
msgid "Export config"
|
|
360
|
+
msgstr ""
|
|
361
|
+
|
|
362
|
+
#. module: l10n_es_atc_mod415
|
|
363
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__first_quarter
|
|
364
|
+
msgid "First quarter operations"
|
|
365
|
+
msgstr ""
|
|
366
|
+
|
|
367
|
+
#. module: l10n_es_atc_mod415
|
|
368
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__first_quarter_real_estate_transmission
|
|
369
|
+
msgid "First quarter real estate"
|
|
370
|
+
msgstr ""
|
|
371
|
+
|
|
372
|
+
#. module: l10n_es_atc_mod415
|
|
373
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__floor
|
|
374
|
+
msgid "Floor"
|
|
375
|
+
msgstr ""
|
|
376
|
+
|
|
377
|
+
#. module: l10n_es_atc_mod415
|
|
378
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_follower_ids
|
|
379
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_follower_ids
|
|
380
|
+
msgid "Followers"
|
|
381
|
+
msgstr ""
|
|
382
|
+
|
|
383
|
+
#. module: l10n_es_atc_mod415
|
|
384
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_partner_ids
|
|
385
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_partner_ids
|
|
386
|
+
msgid "Followers (Partners)"
|
|
387
|
+
msgstr ""
|
|
388
|
+
|
|
389
|
+
#. module: l10n_es_atc_mod415
|
|
390
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_type_icon
|
|
391
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_type_icon
|
|
392
|
+
msgid "Font awesome icon e.g. fa-tasks"
|
|
393
|
+
msgstr ""
|
|
394
|
+
|
|
395
|
+
#. module: l10n_es_atc_mod415
|
|
396
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_account_bank_statement_line__not_in_mod415
|
|
397
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_account_move__not_in_mod415
|
|
398
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_account_payment__not_in_mod415
|
|
399
|
+
msgid "Force not included in 415 report"
|
|
400
|
+
msgstr ""
|
|
401
|
+
|
|
402
|
+
#. module: l10n_es_atc_mod415
|
|
403
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__fourth_quarter
|
|
404
|
+
msgid "Fourth quarter operations"
|
|
405
|
+
msgstr ""
|
|
406
|
+
|
|
407
|
+
#. module: l10n_es_atc_mod415
|
|
408
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__fourth_quarter_real_estate_transmission
|
|
409
|
+
msgid "Fourth quarter real estate"
|
|
410
|
+
msgstr ""
|
|
411
|
+
|
|
412
|
+
#. module: l10n_es_atc_mod415
|
|
413
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__contact_name
|
|
414
|
+
msgid "Full Name"
|
|
415
|
+
msgstr ""
|
|
416
|
+
|
|
417
|
+
#. module: l10n_es_atc_mod415
|
|
418
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.communication_failed
|
|
419
|
+
msgid "Ha habido un error registrando la comunicación."
|
|
420
|
+
msgstr ""
|
|
421
|
+
|
|
422
|
+
#. module: l10n_es_atc_mod415
|
|
423
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__has_message
|
|
424
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__has_message
|
|
425
|
+
msgid "Has Message"
|
|
426
|
+
msgstr ""
|
|
427
|
+
|
|
428
|
+
#. module: l10n_es_atc_mod415
|
|
429
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__id
|
|
430
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__id
|
|
431
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__id
|
|
432
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__id
|
|
433
|
+
msgid "ID"
|
|
434
|
+
msgstr ""
|
|
435
|
+
|
|
436
|
+
#. module: l10n_es_atc_mod415
|
|
437
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_exception_icon
|
|
438
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_exception_icon
|
|
439
|
+
msgid "Icon"
|
|
440
|
+
msgstr ""
|
|
441
|
+
|
|
442
|
+
#. module: l10n_es_atc_mod415
|
|
443
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_exception_icon
|
|
444
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_exception_icon
|
|
445
|
+
msgid "Icon to indicate an exception activity."
|
|
446
|
+
msgstr ""
|
|
447
|
+
|
|
448
|
+
#. module: l10n_es_atc_mod415
|
|
449
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_needaction
|
|
450
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_needaction
|
|
451
|
+
msgid "If checked, new messages require your attention."
|
|
452
|
+
msgstr ""
|
|
453
|
+
|
|
454
|
+
#. module: l10n_es_atc_mod415
|
|
455
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_has_error
|
|
456
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_has_error
|
|
457
|
+
msgid "If checked, some messages have a delivery error."
|
|
458
|
+
msgstr ""
|
|
459
|
+
|
|
460
|
+
#. module: l10n_es_atc_mod415
|
|
461
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_account_bank_statement_line__not_in_mod415
|
|
462
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_account_move__not_in_mod415
|
|
463
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_account_payment__not_in_mod415
|
|
464
|
+
msgid ""
|
|
465
|
+
"If you mark this field, this invoice will not be included in any ATC 415 "
|
|
466
|
+
"model report."
|
|
467
|
+
msgstr ""
|
|
468
|
+
|
|
469
|
+
#. module: l10n_es_atc_mod415
|
|
470
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_res_partner__not_in_mod415
|
|
471
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_res_users__not_in_mod415
|
|
472
|
+
msgid ""
|
|
473
|
+
"If you mark this field, this partner will not be included in any ATC 415 "
|
|
474
|
+
"model report, independently from the total amount of its operations."
|
|
475
|
+
msgstr ""
|
|
476
|
+
|
|
477
|
+
#. module: l10n_es_atc_mod415
|
|
478
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__insurance_operation
|
|
479
|
+
msgid "Insurance Operation"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
482
|
+
#. module: l10n_es_atc_mod415
|
|
483
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__move_id
|
|
484
|
+
msgid "Invoice / Journal entry"
|
|
485
|
+
msgstr ""
|
|
486
|
+
|
|
487
|
+
#. module: l10n_es_atc_mod415
|
|
488
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__operations_limit
|
|
489
|
+
msgid "Invoiced Limit (1)"
|
|
490
|
+
msgstr ""
|
|
491
|
+
|
|
492
|
+
#. module: l10n_es_atc_mod415
|
|
493
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_is_follower
|
|
494
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_is_follower
|
|
495
|
+
msgid "Is Follower"
|
|
496
|
+
msgstr ""
|
|
497
|
+
|
|
498
|
+
#. module: l10n_es_atc_mod415
|
|
499
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__journal_id
|
|
500
|
+
msgid "Journal"
|
|
501
|
+
msgstr ""
|
|
502
|
+
|
|
503
|
+
#. module: l10n_es_atc_mod415
|
|
504
|
+
#: model:ir.model,name:l10n_es_atc_mod415.model_account_move
|
|
505
|
+
msgid "Journal Entry"
|
|
506
|
+
msgstr ""
|
|
507
|
+
|
|
508
|
+
#. module: l10n_es_atc_mod415
|
|
509
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__journal_id
|
|
510
|
+
msgid "Journal in which post the move."
|
|
511
|
+
msgstr ""
|
|
512
|
+
|
|
513
|
+
#. module: l10n_es_atc_mod415
|
|
514
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__representative_vat
|
|
515
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__representative_vat
|
|
516
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__representative_vat
|
|
517
|
+
msgid "L.R. VAT number"
|
|
518
|
+
msgstr ""
|
|
519
|
+
|
|
520
|
+
#. module: l10n_es_atc_mod415
|
|
521
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.communication_success
|
|
522
|
+
msgid "La comunicación se ha registrado correctamente."
|
|
523
|
+
msgstr ""
|
|
524
|
+
|
|
525
|
+
#. module: l10n_es_atc_mod415
|
|
526
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record____last_update
|
|
527
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record____last_update
|
|
528
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record____last_update
|
|
529
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report____last_update
|
|
530
|
+
msgid "Last Modified on"
|
|
531
|
+
msgstr ""
|
|
532
|
+
|
|
533
|
+
#. module: l10n_es_atc_mod415
|
|
534
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__write_uid
|
|
535
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__write_uid
|
|
536
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__write_uid
|
|
537
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__write_uid
|
|
538
|
+
msgid "Last Updated by"
|
|
539
|
+
msgstr ""
|
|
540
|
+
|
|
541
|
+
#. module: l10n_es_atc_mod415
|
|
542
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__write_date
|
|
543
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__write_date
|
|
544
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__write_date
|
|
545
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__write_date
|
|
546
|
+
msgid "Last Updated on"
|
|
547
|
+
msgstr ""
|
|
548
|
+
|
|
549
|
+
#. module: l10n_es_atc_mod415
|
|
550
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__representative_vat
|
|
551
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__representative_vat
|
|
552
|
+
msgid "Legal Representative VAT number"
|
|
553
|
+
msgstr ""
|
|
554
|
+
|
|
555
|
+
#. module: l10n_es_atc_mod415
|
|
556
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__representative_vat
|
|
557
|
+
msgid "Legal Representative VAT number."
|
|
558
|
+
msgstr ""
|
|
559
|
+
|
|
560
|
+
#. module: l10n_es_atc_mod415
|
|
561
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_main_attachment_id
|
|
562
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_main_attachment_id
|
|
563
|
+
msgid "Main Attachment"
|
|
564
|
+
msgstr ""
|
|
565
|
+
|
|
566
|
+
#. module: l10n_es_atc_mod415
|
|
567
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_has_error
|
|
568
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_has_error
|
|
569
|
+
msgid "Message Delivery error"
|
|
570
|
+
msgstr ""
|
|
571
|
+
|
|
572
|
+
#. module: l10n_es_atc_mod415
|
|
573
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_ids
|
|
574
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_ids
|
|
575
|
+
msgid "Messages"
|
|
576
|
+
msgstr ""
|
|
577
|
+
|
|
578
|
+
#. module: l10n_es_atc_mod415
|
|
579
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__number
|
|
580
|
+
msgid "Model number"
|
|
581
|
+
msgstr ""
|
|
582
|
+
|
|
583
|
+
#. module: l10n_es_atc_mod415
|
|
584
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__report_id
|
|
585
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__report_id
|
|
586
|
+
#: model:ir.ui.menu,name:l10n_es_atc_mod415.menu_atc_mod415_report
|
|
587
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.communication_failed
|
|
588
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.communication_success
|
|
589
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.view_partner_form_mod415
|
|
590
|
+
msgid "Modelo 415"
|
|
591
|
+
msgstr ""
|
|
592
|
+
|
|
593
|
+
#. module: l10n_es_atc_mod415
|
|
594
|
+
#: model:ir.actions.act_window,name:l10n_es_atc_mod415.action_l10n_es_atc_mod415_report
|
|
595
|
+
msgid "Modelo ATC 415"
|
|
596
|
+
msgstr ""
|
|
597
|
+
|
|
598
|
+
#. module: l10n_es_atc_mod415
|
|
599
|
+
#: model:ir.model,name:l10n_es_atc_mod415.model_l10n_es_atc_mod415_move_record
|
|
600
|
+
msgid "Move Record"
|
|
601
|
+
msgstr ""
|
|
602
|
+
|
|
603
|
+
#. module: l10n_es_atc_mod415
|
|
604
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__move_record_ids
|
|
605
|
+
msgid "Move records"
|
|
606
|
+
msgstr ""
|
|
607
|
+
|
|
608
|
+
#. module: l10n_es_atc_mod415
|
|
609
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__contact_name
|
|
610
|
+
msgid "Must have name and surname."
|
|
611
|
+
msgstr ""
|
|
612
|
+
|
|
613
|
+
#. module: l10n_es_atc_mod415
|
|
614
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__my_activity_date_deadline
|
|
615
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__my_activity_date_deadline
|
|
616
|
+
msgid "My Activity Deadline"
|
|
617
|
+
msgstr ""
|
|
618
|
+
|
|
619
|
+
#. module: l10n_es_atc_mod415
|
|
620
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_date_deadline
|
|
621
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_date_deadline
|
|
622
|
+
msgid "Next Activity Deadline"
|
|
623
|
+
msgstr ""
|
|
624
|
+
|
|
625
|
+
#. module: l10n_es_atc_mod415
|
|
626
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_summary
|
|
627
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_summary
|
|
628
|
+
msgid "Next Activity Summary"
|
|
629
|
+
msgstr ""
|
|
630
|
+
|
|
631
|
+
#. module: l10n_es_atc_mod415
|
|
632
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_type_id
|
|
633
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_type_id
|
|
634
|
+
msgid "Next Activity Type"
|
|
635
|
+
msgstr ""
|
|
636
|
+
|
|
637
|
+
#. module: l10n_es_atc_mod415
|
|
638
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_res_partner__not_in_mod415
|
|
639
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_res_users__not_in_mod415
|
|
640
|
+
msgid "Not included in 415 report"
|
|
641
|
+
msgstr ""
|
|
642
|
+
|
|
643
|
+
#. module: l10n_es_atc_mod415
|
|
644
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__number
|
|
645
|
+
msgid "Number"
|
|
646
|
+
msgstr ""
|
|
647
|
+
|
|
648
|
+
#. module: l10n_es_atc_mod415
|
|
649
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__number_calification
|
|
650
|
+
msgid "Number Calification"
|
|
651
|
+
msgstr ""
|
|
652
|
+
|
|
653
|
+
#. module: l10n_es_atc_mod415
|
|
654
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__number_type
|
|
655
|
+
msgid "Number Type"
|
|
656
|
+
msgstr ""
|
|
657
|
+
|
|
658
|
+
#. module: l10n_es_atc_mod415
|
|
659
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_needaction_counter
|
|
660
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_needaction_counter
|
|
661
|
+
msgid "Number of Actions"
|
|
662
|
+
msgstr ""
|
|
663
|
+
|
|
664
|
+
#. module: l10n_es_atc_mod415
|
|
665
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_has_error_counter
|
|
666
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_has_error_counter
|
|
667
|
+
msgid "Number of errors"
|
|
668
|
+
msgstr ""
|
|
669
|
+
|
|
670
|
+
#. module: l10n_es_atc_mod415
|
|
671
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_needaction_counter
|
|
672
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_needaction_counter
|
|
673
|
+
msgid "Number of messages requiring action"
|
|
674
|
+
msgstr ""
|
|
675
|
+
|
|
676
|
+
#. module: l10n_es_atc_mod415
|
|
677
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__message_has_error_counter
|
|
678
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__message_has_error_counter
|
|
679
|
+
msgid "Number of messages with delivery error"
|
|
680
|
+
msgstr ""
|
|
681
|
+
|
|
682
|
+
#. module: l10n_es_atc_mod415
|
|
683
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__cash_basis_operation
|
|
684
|
+
msgid ""
|
|
685
|
+
"Only for cash basis operations. Set to identify cash basis operations aside "
|
|
686
|
+
"from the rest."
|
|
687
|
+
msgstr ""
|
|
688
|
+
|
|
689
|
+
#. module: l10n_es_atc_mod415
|
|
690
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__insurance_operation
|
|
691
|
+
msgid ""
|
|
692
|
+
"Only for insurance companies. Set to identify insurance operations aside "
|
|
693
|
+
"from the rest."
|
|
694
|
+
msgstr ""
|
|
695
|
+
|
|
696
|
+
#. module: l10n_es_atc_mod415
|
|
697
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__related_goods_operation
|
|
698
|
+
msgid ""
|
|
699
|
+
"Only for related goods operations. Set to identify related goods operations "
|
|
700
|
+
"aside from the rest."
|
|
701
|
+
msgstr ""
|
|
702
|
+
|
|
703
|
+
#. module: l10n_es_atc_mod415
|
|
704
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__tax_person_operation
|
|
705
|
+
msgid ""
|
|
706
|
+
"Only for taxable person operations. Set to identify taxable person "
|
|
707
|
+
"operations aside from the rest."
|
|
708
|
+
msgstr ""
|
|
709
|
+
|
|
710
|
+
#. module: l10n_es_atc_mod415
|
|
711
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__operation_key
|
|
712
|
+
msgid "Operation Key"
|
|
713
|
+
msgstr ""
|
|
714
|
+
|
|
715
|
+
#. module: l10n_es_atc_mod415
|
|
716
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__amount
|
|
717
|
+
msgid "Operations amount"
|
|
718
|
+
msgstr ""
|
|
719
|
+
|
|
720
|
+
#. module: l10n_es_atc_mod415
|
|
721
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__origin_year
|
|
722
|
+
msgid "Origin Year"
|
|
723
|
+
msgstr ""
|
|
724
|
+
|
|
725
|
+
#. module: l10n_es_atc_mod415
|
|
726
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__origin_year
|
|
727
|
+
msgid "Origin cash operation year"
|
|
728
|
+
msgstr ""
|
|
729
|
+
|
|
730
|
+
#. module: l10n_es_atc_mod415
|
|
731
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__partner_id
|
|
732
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__partner_id
|
|
733
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__partner_id
|
|
734
|
+
msgid "Partner"
|
|
735
|
+
msgstr ""
|
|
736
|
+
|
|
737
|
+
#. module: l10n_es_atc_mod415
|
|
738
|
+
#: model:ir.model,name:l10n_es_atc_mod415.model_l10n_es_atc_mod415_partner_record
|
|
739
|
+
msgid "Partner Record"
|
|
740
|
+
msgstr ""
|
|
741
|
+
|
|
742
|
+
#. module: l10n_es_atc_mod415
|
|
743
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__partner_record_ids
|
|
744
|
+
msgid "Partner Records"
|
|
745
|
+
msgstr ""
|
|
746
|
+
|
|
747
|
+
#. module: l10n_es_atc_mod415
|
|
748
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_move_record__partner_record_id
|
|
749
|
+
msgid "Partner record"
|
|
750
|
+
msgstr ""
|
|
751
|
+
|
|
752
|
+
#. module: l10n_es_atc_mod415
|
|
753
|
+
#. odoo-python
|
|
754
|
+
#: code:addons/l10n_es_atc_mod415/models/mod415.py:0
|
|
755
|
+
#, python-format
|
|
756
|
+
msgid "Partner records"
|
|
757
|
+
msgstr ""
|
|
758
|
+
|
|
759
|
+
#. module: l10n_es_atc_mod415
|
|
760
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__total_partner_records
|
|
761
|
+
msgid "Partners records"
|
|
762
|
+
msgstr ""
|
|
763
|
+
|
|
764
|
+
#. module: l10n_es_atc_mod415
|
|
765
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__period_type
|
|
766
|
+
msgid "Period Type"
|
|
767
|
+
msgstr ""
|
|
768
|
+
|
|
769
|
+
#. module: l10n_es_atc_mod415
|
|
770
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__contact_phone
|
|
771
|
+
msgid "Phone"
|
|
772
|
+
msgstr ""
|
|
773
|
+
|
|
774
|
+
#. module: l10n_es_atc_mod415
|
|
775
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__portal
|
|
776
|
+
msgid "Portal"
|
|
777
|
+
msgstr ""
|
|
778
|
+
|
|
779
|
+
#. module: l10n_es_atc_mod415
|
|
780
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__access_url
|
|
781
|
+
msgid "Portal Access URL"
|
|
782
|
+
msgstr ""
|
|
783
|
+
|
|
784
|
+
#. module: l10n_es_atc_mod415
|
|
785
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__postal_code
|
|
786
|
+
msgid "Postal Code"
|
|
787
|
+
msgstr ""
|
|
788
|
+
|
|
789
|
+
#. module: l10n_es_atc_mod415
|
|
790
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__previous_number
|
|
791
|
+
msgid "Previous declaration number"
|
|
792
|
+
msgstr ""
|
|
793
|
+
|
|
794
|
+
#. module: l10n_es_atc_mod415
|
|
795
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__total_real_estate_amount
|
|
796
|
+
msgid "Real Estate Amount"
|
|
797
|
+
msgstr ""
|
|
798
|
+
|
|
799
|
+
#. module: l10n_es_atc_mod415
|
|
800
|
+
#: model:ir.model,name:l10n_es_atc_mod415.model_l10n_es_atc_mod415_real_estate_record
|
|
801
|
+
msgid "Real Estate Record"
|
|
802
|
+
msgstr ""
|
|
803
|
+
|
|
804
|
+
#. module: l10n_es_atc_mod415
|
|
805
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__real_estate_record_ids
|
|
806
|
+
msgid "Real Estate Records"
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
809
|
+
#. module: l10n_es_atc_mod415
|
|
810
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__real_estate_transmissions_amount
|
|
811
|
+
msgid "Real Estate Transmisions amount"
|
|
812
|
+
msgstr ""
|
|
813
|
+
|
|
814
|
+
#. module: l10n_es_atc_mod415
|
|
815
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__total_real_estate_transmissions_amount
|
|
816
|
+
msgid "Real Estate Transmissions Amount"
|
|
817
|
+
msgstr ""
|
|
818
|
+
|
|
819
|
+
#. module: l10n_es_atc_mod415
|
|
820
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__situation
|
|
821
|
+
msgid "Real estate Situation"
|
|
822
|
+
msgstr ""
|
|
823
|
+
|
|
824
|
+
#. module: l10n_es_atc_mod415
|
|
825
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__total_real_estate_records
|
|
826
|
+
msgid "Real estate records"
|
|
827
|
+
msgstr ""
|
|
828
|
+
|
|
829
|
+
#. module: l10n_es_atc_mod415
|
|
830
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__received_cash_limit
|
|
831
|
+
msgid "Received cash Limit (2)"
|
|
832
|
+
msgstr ""
|
|
833
|
+
|
|
834
|
+
#. module: l10n_es_atc_mod415
|
|
835
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__cash_amount
|
|
836
|
+
msgid "Received cash amount"
|
|
837
|
+
msgstr ""
|
|
838
|
+
|
|
839
|
+
#. module: l10n_es_atc_mod415
|
|
840
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__check_ok
|
|
841
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__check_ok
|
|
842
|
+
msgid "Record is OK"
|
|
843
|
+
msgstr ""
|
|
844
|
+
|
|
845
|
+
#. module: l10n_es_atc_mod415
|
|
846
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__related_goods_operation
|
|
847
|
+
msgid "Related Goods Operation"
|
|
848
|
+
msgstr ""
|
|
849
|
+
|
|
850
|
+
#. module: l10n_es_atc_mod415
|
|
851
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__name
|
|
852
|
+
msgid "Report identifier"
|
|
853
|
+
msgstr ""
|
|
854
|
+
|
|
855
|
+
#. module: l10n_es_atc_mod415
|
|
856
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_user_id
|
|
857
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_user_id
|
|
858
|
+
msgid "Responsible User"
|
|
859
|
+
msgstr ""
|
|
860
|
+
|
|
861
|
+
#. module: l10n_es_atc_mod415
|
|
862
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.communication_failed
|
|
863
|
+
msgid ""
|
|
864
|
+
"Revíselo y vuelva a intentarlo, o pongase en contacto por correo con "
|
|
865
|
+
"nosotros."
|
|
866
|
+
msgstr ""
|
|
867
|
+
|
|
868
|
+
#. module: l10n_es_atc_mod415
|
|
869
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__user_id
|
|
870
|
+
msgid "Salesperson"
|
|
871
|
+
msgstr ""
|
|
872
|
+
|
|
873
|
+
#. module: l10n_es_atc_mod415
|
|
874
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__second_quarter
|
|
875
|
+
msgid "Second quarter operations"
|
|
876
|
+
msgstr ""
|
|
877
|
+
|
|
878
|
+
#. module: l10n_es_atc_mod415
|
|
879
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__second_quarter_real_estate_transmission
|
|
880
|
+
msgid "Second quarter real estate"
|
|
881
|
+
msgstr ""
|
|
882
|
+
|
|
883
|
+
#. module: l10n_es_atc_mod415
|
|
884
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__access_token
|
|
885
|
+
msgid "Security Token"
|
|
886
|
+
msgstr ""
|
|
887
|
+
|
|
888
|
+
#. module: l10n_es_atc_mod415
|
|
889
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__bussiness_real_estate_rent
|
|
890
|
+
msgid ""
|
|
891
|
+
"Set to identify real estate rent operations aside from the rest. You'll need"
|
|
892
|
+
" to fill in the real estate info only when you are the one that receives the"
|
|
893
|
+
" money."
|
|
894
|
+
msgstr ""
|
|
895
|
+
|
|
896
|
+
#. module: l10n_es_atc_mod415
|
|
897
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__stairway
|
|
898
|
+
msgid "Stairway"
|
|
899
|
+
msgstr ""
|
|
900
|
+
|
|
901
|
+
#. module: l10n_es_atc_mod415
|
|
902
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__date_start
|
|
903
|
+
msgid "Starting date"
|
|
904
|
+
msgstr ""
|
|
905
|
+
|
|
906
|
+
#. module: l10n_es_atc_mod415
|
|
907
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__state
|
|
908
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__state
|
|
909
|
+
msgid "State"
|
|
910
|
+
msgstr ""
|
|
911
|
+
|
|
912
|
+
#. module: l10n_es_atc_mod415
|
|
913
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__partner_state_code
|
|
914
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__state_code
|
|
915
|
+
msgid "State Code"
|
|
916
|
+
msgstr ""
|
|
917
|
+
|
|
918
|
+
#. module: l10n_es_atc_mod415
|
|
919
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__statement_type
|
|
920
|
+
msgid "Statement Type"
|
|
921
|
+
msgstr ""
|
|
922
|
+
|
|
923
|
+
#. module: l10n_es_atc_mod415
|
|
924
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_state
|
|
925
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_state
|
|
926
|
+
msgid ""
|
|
927
|
+
"Status based on activities\n"
|
|
928
|
+
"Overdue: Due date is already passed\n"
|
|
929
|
+
"Today: Activity date is today\n"
|
|
930
|
+
"Planned: Future activities."
|
|
931
|
+
msgstr ""
|
|
932
|
+
|
|
933
|
+
#. module: l10n_es_atc_mod415
|
|
934
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__support_type
|
|
935
|
+
msgid "Support Type"
|
|
936
|
+
msgstr ""
|
|
937
|
+
|
|
938
|
+
#. module: l10n_es_atc_mod415
|
|
939
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__tax_agency_ids
|
|
940
|
+
msgid "Tax Agency"
|
|
941
|
+
msgstr ""
|
|
942
|
+
|
|
943
|
+
#. module: l10n_es_atc_mod415
|
|
944
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__tax_person_operation
|
|
945
|
+
msgid "Tax Person Operation"
|
|
946
|
+
msgstr ""
|
|
947
|
+
|
|
948
|
+
#. module: l10n_es_atc_mod415
|
|
949
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__operations_limit
|
|
950
|
+
msgid ""
|
|
951
|
+
"The declaration will include partners with the total of operations over this"
|
|
952
|
+
" limit"
|
|
953
|
+
msgstr ""
|
|
954
|
+
|
|
955
|
+
#. module: l10n_es_atc_mod415
|
|
956
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__received_cash_limit
|
|
957
|
+
msgid "The declaration will show the total of cash operations over this limit"
|
|
958
|
+
msgstr ""
|
|
959
|
+
|
|
960
|
+
#. module: l10n_es_atc_mod415
|
|
961
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__third_quarter
|
|
962
|
+
msgid "Third quarter operations"
|
|
963
|
+
msgstr ""
|
|
964
|
+
|
|
965
|
+
#. module: l10n_es_atc_mod415
|
|
966
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__third_quarter_real_estate_transmission
|
|
967
|
+
msgid "Third quarter real estate"
|
|
968
|
+
msgstr ""
|
|
969
|
+
|
|
970
|
+
#. module: l10n_es_atc_mod415
|
|
971
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__counterpart_account_id
|
|
972
|
+
msgid ""
|
|
973
|
+
"This account will be the counterpart for all the journal items that are "
|
|
974
|
+
"regularized when posting the report."
|
|
975
|
+
msgstr ""
|
|
976
|
+
|
|
977
|
+
#. module: l10n_es_atc_mod415
|
|
978
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__first_quarter
|
|
979
|
+
msgid ""
|
|
980
|
+
"Total amount of first quarter in, out and refund invoices for this partner"
|
|
981
|
+
msgstr ""
|
|
982
|
+
|
|
983
|
+
#. module: l10n_es_atc_mod415
|
|
984
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__first_quarter_real_estate_transmission
|
|
985
|
+
msgid ""
|
|
986
|
+
"Total amount of first quarter real estate transmissions for this partner"
|
|
987
|
+
msgstr ""
|
|
988
|
+
|
|
989
|
+
#. module: l10n_es_atc_mod415
|
|
990
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__fourth_quarter
|
|
991
|
+
msgid ""
|
|
992
|
+
"Total amount of fourth quarter in, out and refund invoices for this partner"
|
|
993
|
+
msgstr ""
|
|
994
|
+
|
|
995
|
+
#. module: l10n_es_atc_mod415
|
|
996
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__fourth_quarter_real_estate_transmission
|
|
997
|
+
msgid ""
|
|
998
|
+
"Total amount of fourth quarter real estate transmissions for this partner"
|
|
999
|
+
msgstr ""
|
|
1000
|
+
|
|
1001
|
+
#. module: l10n_es_atc_mod415
|
|
1002
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__second_quarter
|
|
1003
|
+
msgid ""
|
|
1004
|
+
"Total amount of second quarter in, out and refund invoices for this partner"
|
|
1005
|
+
msgstr ""
|
|
1006
|
+
|
|
1007
|
+
#. module: l10n_es_atc_mod415
|
|
1008
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__second_quarter_real_estate_transmission
|
|
1009
|
+
msgid ""
|
|
1010
|
+
"Total amount of second quarter real estate transmissions for this partner"
|
|
1011
|
+
msgstr ""
|
|
1012
|
+
|
|
1013
|
+
#. module: l10n_es_atc_mod415
|
|
1014
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__third_quarter
|
|
1015
|
+
msgid ""
|
|
1016
|
+
"Total amount of third quarter in, out and refund invoices for this partner"
|
|
1017
|
+
msgstr ""
|
|
1018
|
+
|
|
1019
|
+
#. module: l10n_es_atc_mod415
|
|
1020
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__third_quarter_real_estate_transmission
|
|
1021
|
+
msgid ""
|
|
1022
|
+
"Total amount of third quarter real estate transmissions for this partner"
|
|
1023
|
+
msgstr ""
|
|
1024
|
+
|
|
1025
|
+
#. module: l10n_es_atc_mod415
|
|
1026
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__township
|
|
1027
|
+
msgid "Township"
|
|
1028
|
+
msgstr ""
|
|
1029
|
+
|
|
1030
|
+
#. module: l10n_es_atc_mod415
|
|
1031
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__township_code
|
|
1032
|
+
msgid "Township Code"
|
|
1033
|
+
msgstr ""
|
|
1034
|
+
|
|
1035
|
+
#. module: l10n_es_atc_mod415
|
|
1036
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__activity_exception_decoration
|
|
1037
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__activity_exception_decoration
|
|
1038
|
+
msgid "Type of the exception activity on record."
|
|
1039
|
+
msgstr ""
|
|
1040
|
+
|
|
1041
|
+
#. module: l10n_es_atc_mod415
|
|
1042
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__partner_vat
|
|
1043
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_real_estate_record__partner_vat
|
|
1044
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__company_vat
|
|
1045
|
+
msgid "VAT number"
|
|
1046
|
+
msgstr ""
|
|
1047
|
+
|
|
1048
|
+
#. module: l10n_es_atc_mod415
|
|
1049
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__community_vat
|
|
1050
|
+
msgid ""
|
|
1051
|
+
"VAT number for professionals established in other state member without "
|
|
1052
|
+
"national VAT"
|
|
1053
|
+
msgstr ""
|
|
1054
|
+
|
|
1055
|
+
#. module: l10n_es_atc_mod415
|
|
1056
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__website_message_ids
|
|
1057
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__website_message_ids
|
|
1058
|
+
msgid "Website Messages"
|
|
1059
|
+
msgstr ""
|
|
1060
|
+
|
|
1061
|
+
#. module: l10n_es_atc_mod415
|
|
1062
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_partner_record__website_message_ids
|
|
1063
|
+
#: model:ir.model.fields,help:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__website_message_ids
|
|
1064
|
+
msgid "Website communication history"
|
|
1065
|
+
msgstr ""
|
|
1066
|
+
|
|
1067
|
+
#. module: l10n_es_atc_mod415
|
|
1068
|
+
#: model_terms:ir.ui.view,arch_db:l10n_es_atc_mod415.communication_success
|
|
1069
|
+
msgid "Ya puede cerrar esta página si así lo desea."
|
|
1070
|
+
msgstr ""
|
|
1071
|
+
|
|
1072
|
+
#. module: l10n_es_atc_mod415
|
|
1073
|
+
#: model:ir.model.fields,field_description:l10n_es_atc_mod415.field_l10n_es_atc_mod415_report__year
|
|
1074
|
+
msgid "Year"
|
|
1075
|
+
msgstr ""
|