odoo-addon-l10n-es-aeat-mod347 16.0.1.7.2.2__py3-none-any.whl → 16.0.1.7.3__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_aeat_mod347/README.rst +1 -1
- odoo/addons/l10n_es_aeat_mod347/__manifest__.py +1 -1
- odoo/addons/l10n_es_aeat_mod347/i18n/l10n_es_aeat_mod347.pot +7 -0
- odoo/addons/l10n_es_aeat_mod347/models/mod347.py +4 -0
- odoo/addons/l10n_es_aeat_mod347/static/description/index.html +8 -5
- {odoo_addon_l10n_es_aeat_mod347-16.0.1.7.2.2.dist-info → odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info}/METADATA +3 -6
- {odoo_addon_l10n_es_aeat_mod347-16.0.1.7.2.2.dist-info → odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info}/RECORD +9 -9
- {odoo_addon_l10n_es_aeat_mod347-16.0.1.7.2.2.dist-info → odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info}/WHEEL +0 -0
- {odoo_addon_l10n_es_aeat_mod347-16.0.1.7.2.2.dist-info → odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ AEAT modelo 347
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:dbf7e82f42baae1d95f027d380be774fe15c8a1f6a49e277f00d8db3cebb3432
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1341,6 +1341,13 @@ msgstr ""
|
|
|
1341
1341
|
msgid "The declaration will show the total of cash operations over this limit"
|
|
1342
1342
|
msgstr ""
|
|
1343
1343
|
|
|
1344
|
+
#. module: l10n_es_aeat_mod347
|
|
1345
|
+
#. odoo-python
|
|
1346
|
+
#: code:addons/l10n_es_aeat_mod347/models/mod347.py:0
|
|
1347
|
+
#, python-format
|
|
1348
|
+
msgid "The selected partner doesn't have a VAT or a state code"
|
|
1349
|
+
msgstr ""
|
|
1350
|
+
|
|
1344
1351
|
#. module: l10n_es_aeat_mod347
|
|
1345
1352
|
#: model:ir.model.fields,field_description:l10n_es_aeat_mod347.field_l10n_es_aeat_mod347_partner_record__third_quarter
|
|
1346
1353
|
msgid "Third quarter operations"
|
|
@@ -746,6 +746,10 @@ class L10nEsAeatMod347RealStateRecord(models.Model):
|
|
|
746
746
|
"""Loads some partner data when the selected partner changes."""
|
|
747
747
|
if self.partner_id:
|
|
748
748
|
vals = self.report_id._get_partner_347_identification(self.partner_id)
|
|
749
|
+
if not vals.get("partner_vat") or not vals.get("partner_state_code"):
|
|
750
|
+
raise exceptions.ValidationError(
|
|
751
|
+
_("The selected partner doesn't have a VAT or a state code")
|
|
752
|
+
)
|
|
749
753
|
self.update(
|
|
750
754
|
{
|
|
751
755
|
"partner_vat": vals.pop("partner_vat"),
|
|
@@ -8,10 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
/*
|
|
10
10
|
:Author: David Goodger (goodger@python.org)
|
|
11
|
-
:Id: $Id: html4css1.css
|
|
11
|
+
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
|
|
12
12
|
:Copyright: This stylesheet has been placed in the public domain.
|
|
13
13
|
|
|
14
14
|
Default cascading style sheet for the HTML output of Docutils.
|
|
15
|
+
Despite the name, some widely supported CSS2 features are used.
|
|
15
16
|
|
|
16
17
|
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
|
17
18
|
customize this style sheet.
|
|
@@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
|
|
274
275
|
margin-left: 2em ;
|
|
275
276
|
margin-right: 2em }
|
|
276
277
|
|
|
277
|
-
pre.code .ln { color:
|
|
278
|
+
pre.code .ln { color: gray; } /* line numbers */
|
|
278
279
|
pre.code, code { background-color: #eeeeee }
|
|
279
280
|
pre.code .comment, code .comment { color: #5C6576 }
|
|
280
281
|
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
|
@@ -300,7 +301,7 @@ span.option {
|
|
|
300
301
|
span.pre {
|
|
301
302
|
white-space: pre }
|
|
302
303
|
|
|
303
|
-
span.problematic {
|
|
304
|
+
span.problematic, pre.problematic {
|
|
304
305
|
color: red }
|
|
305
306
|
|
|
306
307
|
span.section-subtitle {
|
|
@@ -366,7 +367,7 @@ ul.auto-toc {
|
|
|
366
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
367
368
|
!! changes will be overwritten. !!
|
|
368
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
369
|
-
!! source digest: sha256:
|
|
370
|
+
!! source digest: sha256:dbf7e82f42baae1d95f027d380be774fe15c8a1f6a49e277f00d8db3cebb3432
|
|
370
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
371
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/l10n-spain/tree/16.0/l10n_es_aeat_mod347"><img alt="OCA/l10n-spain" src="https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/l10n-spain-16-0/l10n-spain-16-0-l10n_es_aeat_mod347"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/l10n-spain&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
372
373
|
<p>(Declaración Anual de Operaciones con Terceros)
|
|
@@ -551,7 +552,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
551
552
|
<div class="section" id="maintainers">
|
|
552
553
|
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
|
|
553
554
|
<p>This module is maintained by the OCA.</p>
|
|
554
|
-
<a class="reference external image-reference" href="https://odoo-community.org"
|
|
555
|
+
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
556
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
557
|
+
</a>
|
|
555
558
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
556
559
|
mission is to support the collaborative development of Odoo features and
|
|
557
560
|
promote its widespread use.</p>
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
|
-
Name: odoo-addon-
|
|
3
|
-
Version: 16.0.1.7.
|
|
2
|
+
Name: odoo-addon-l10n_es_aeat_mod347
|
|
3
|
+
Version: 16.0.1.7.3
|
|
4
4
|
Summary: AEAT modelo 347
|
|
5
5
|
Home-page: https://github.com/OCA/l10n-spain
|
|
6
6
|
Author: Tecnativa,PESOL,Odoo Community Association (OCA)
|
|
7
7
|
Author-email: support@odoo-community.org
|
|
8
8
|
License: AGPL-3
|
|
9
|
-
Platform: UNKNOWN
|
|
10
9
|
Classifier: Programming Language :: Python
|
|
11
10
|
Classifier: Framework :: Odoo
|
|
12
11
|
Classifier: Framework :: Odoo :: 16.0
|
|
@@ -25,7 +24,7 @@ AEAT modelo 347
|
|
|
25
24
|
!! This file is generated by oca-gen-addon-readme !!
|
|
26
25
|
!! changes will be overwritten. !!
|
|
27
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
|
-
!! source digest: sha256:
|
|
27
|
+
!! source digest: sha256:dbf7e82f42baae1d95f027d380be774fe15c8a1f6a49e277f00d8db3cebb3432
|
|
29
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
30
29
|
|
|
31
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -233,5 +232,3 @@ promote its widespread use.
|
|
|
233
232
|
This module is part of the `OCA/l10n-spain <https://github.com/OCA/l10n-spain/tree/16.0/l10n_es_aeat_mod347>`_ project on GitHub.
|
|
234
233
|
|
|
235
234
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
236
|
-
|
|
237
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/l10n_es_aeat_mod347/README.rst,sha256=
|
|
1
|
+
odoo/addons/l10n_es_aeat_mod347/README.rst,sha256=k0RqgkpbwPzf2M5wEU7OvkG0wcESOF2KHbwLKIKmYOg,10046
|
|
2
2
|
odoo/addons/l10n_es_aeat_mod347/__init__.py,sha256=KduvwSXaohJjXJSSFIyCLErn9mb8rmTIZmpXybXDwqo,112
|
|
3
|
-
odoo/addons/l10n_es_aeat_mod347/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/l10n_es_aeat_mod347/__manifest__.py,sha256=953q2SaLK9w-AlQkvViMqXNLe0v5TzfdYCqRgEMqUFw,1487
|
|
4
4
|
odoo/addons/l10n_es_aeat_mod347/controllers/__init__.py,sha256=LQPn5lRsl01JWaZdyGq9q9cakGP7XWkTOHU9aCE7w_o,84
|
|
5
5
|
odoo/addons/l10n_es_aeat_mod347/controllers/main.py,sha256=V91XKaTK6XaaU7eUcE-1R4CkWsx_P65EMS7J39vbaC8,1619
|
|
6
6
|
odoo/addons/l10n_es_aeat_mod347/data/aeat_export_mod347_data.xml,sha256=6-KF7VMtXHuBvS87ZFCOnN5gBhbXNpZM48QVoqWUNso,12755
|
|
@@ -19,7 +19,7 @@ odoo/addons/l10n_es_aeat_mod347/i18n/eu.po,sha256=w1lnsgZu9Kxa9RlP-F85SGLhhMeqSG
|
|
|
19
19
|
odoo/addons/l10n_es_aeat_mod347/i18n/fr.po,sha256=9bd29GOlrwYJPu4lmtRYe9vLXgNm67oi5xBCew37xtA,63763
|
|
20
20
|
odoo/addons/l10n_es_aeat_mod347/i18n/gl.po,sha256=7UQrU9ga9Jg5sIQ2ssxu5Ay8Xp7eBWvi75rM546BdZM,72868
|
|
21
21
|
odoo/addons/l10n_es_aeat_mod347/i18n/hr.po,sha256=3NWkHTLERdwK7VaGPO0nqEqQJdR-o32rLe_cT0xV3ZE,63302
|
|
22
|
-
odoo/addons/l10n_es_aeat_mod347/i18n/l10n_es_aeat_mod347.pot,sha256=
|
|
22
|
+
odoo/addons/l10n_es_aeat_mod347/i18n/l10n_es_aeat_mod347.pot,sha256=M6eAMbxLI_QUfx09qKl8wjETpndyARQbJGpHGrQe-fE,62878
|
|
23
23
|
odoo/addons/l10n_es_aeat_mod347/i18n/nl.po,sha256=gMwEkC1yZKbOVfZUImIUgHI-7Qn7u93ZlMhLNKX8UFA,63074
|
|
24
24
|
odoo/addons/l10n_es_aeat_mod347/i18n/pl.po,sha256=bpeiPtjIcO80tbe1O0B89OQaeu46wAYbnUL69ephQFM,63187
|
|
25
25
|
odoo/addons/l10n_es_aeat_mod347/i18n/pt.po,sha256=u5W4E-fxf5iiPYBIvNiLlsWxNrJLM3vPLNQLJgBHdy8,63181
|
|
@@ -33,7 +33,7 @@ odoo/addons/l10n_es_aeat_mod347/images/l10n_es_aeat_mod347.png,sha256=3J3xb6YSu9
|
|
|
33
33
|
odoo/addons/l10n_es_aeat_mod347/migrations/16.0.1.7.1/post-migration.py,sha256=FsLbPIjZD1ul4Z3IJm0YridGndN039HrYugJoPnCEy0,666
|
|
34
34
|
odoo/addons/l10n_es_aeat_mod347/models/__init__.py,sha256=MvYP35KGCSr6FoS0sp_JxZw3oy-t_x6y3OYKENwYQts,139
|
|
35
35
|
odoo/addons/l10n_es_aeat_mod347/models/account_move.py,sha256=R3oqSrFMwSJDVpXHRlAXUl0DJGzE1EIjSmjXf6xoV20,483
|
|
36
|
-
odoo/addons/l10n_es_aeat_mod347/models/mod347.py,sha256
|
|
36
|
+
odoo/addons/l10n_es_aeat_mod347/models/mod347.py,sha256=-UCpLkhmemi2iQwGGKI8ZadWk27VSrl-mVaDa3D0jJY,28969
|
|
37
37
|
odoo/addons/l10n_es_aeat_mod347/models/res_partner.py,sha256=Od8yg6WNNSBD_ML81rFkYgKw9mQ_sAuyc3h6IrJ3iUY,707
|
|
38
38
|
odoo/addons/l10n_es_aeat_mod347/readme/CONFIG.rst,sha256=QNKV-2Ey3hirj-7QgSK2klh2BNwWVOsqTUHJFLFhBoQ,327
|
|
39
39
|
odoo/addons/l10n_es_aeat_mod347/readme/CONTRIBUTORS.rst,sha256=H-BoJd0jK9ib5dl1Lq27NOuqePC2FM09GwlOGEXXfHc,431
|
|
@@ -45,7 +45,7 @@ odoo/addons/l10n_es_aeat_mod347/security/ir.model.access.csv,sha256=qJA0x2CHIDgz
|
|
|
45
45
|
odoo/addons/l10n_es_aeat_mod347/security/mod_347_security.xml,sha256=OMDppYj6F38xyHud_j6nA8wlLydwN356djkWPVDtsUA,443
|
|
46
46
|
odoo/addons/l10n_es_aeat_mod347/static/description/icon.png,sha256=6R0bbadbtxEquvoYzL1zhenD3-kgfv2_38y86PybQSk,5827
|
|
47
47
|
odoo/addons/l10n_es_aeat_mod347/static/description/icon_source.svg,sha256=socTrpRE7VOUyKY8-PpfnmSLP77ep3rtjbBb2WA_Cl8,3660
|
|
48
|
-
odoo/addons/l10n_es_aeat_mod347/static/description/index.html,sha256=
|
|
48
|
+
odoo/addons/l10n_es_aeat_mod347/static/description/index.html,sha256=NlmH8EWiv3HTXGzkHcYvpFilO7tkDj0n2CBaNEXZVHQ,21002
|
|
49
49
|
odoo/addons/l10n_es_aeat_mod347/static/src/img/347_bad.svg,sha256=BJsbBfyHKyNk0pCx2Sw-7OyXILjDYZ3o3NueDmvpKkQ,8456
|
|
50
50
|
odoo/addons/l10n_es_aeat_mod347/static/src/img/347_ok.svg,sha256=fThHNCEHQ4fiT3ZzQf49A7p7G0we4-UJioLG1mMNKYo,8456
|
|
51
51
|
odoo/addons/l10n_es_aeat_mod347/tests/__init__.py,sha256=-OmJcCngrNHFo54isURuxfD8zNpgSWmD9EtGd8dHX0M,104
|
|
@@ -55,7 +55,7 @@ odoo/addons/l10n_es_aeat_mod347/views/mod347_templates.xml,sha256=z0xTed1riDUTUg
|
|
|
55
55
|
odoo/addons/l10n_es_aeat_mod347/views/mod347_view.xml,sha256=vLt3UUnim5RMwLICnthvNm8ctqKYakACaPBDcsy7TI8,23103
|
|
56
56
|
odoo/addons/l10n_es_aeat_mod347/views/report_347_partner.xml,sha256=FWxIbKLFjfd5JvitTr2LSBVp8zCmgzh9_yLd31V93gk,8915
|
|
57
57
|
odoo/addons/l10n_es_aeat_mod347/views/res_partner_view.xml,sha256=wR523yxh9wiKUmTKdDimKqEZImQHneyF3rKOQGjz63I,515
|
|
58
|
-
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.
|
|
59
|
-
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.
|
|
60
|
-
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.
|
|
61
|
-
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.
|
|
58
|
+
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info/METADATA,sha256=BECH178Atk05w8Brb0eD5eOVi0PZ2eZwtEqy6yWghn4,10681
|
|
59
|
+
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
60
|
+
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
61
|
+
odoo_addon_l10n_es_aeat_mod347-16.0.1.7.3.dist-info/RECORD,,
|
|
File without changes
|