odoo-addon-l10n-es-aeat-sii-oca 17.0.1.1.1.1__py3-none-any.whl → 17.0.1.2.0__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.
@@ -1,3 +1,7 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
1
5
  =============================================
2
6
  Suministro Inmediato de Información en el IVA
3
7
  =============================================
@@ -7,13 +11,13 @@ Suministro Inmediato de Información en el IVA
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:e7ee59cb7caecaf7b73c801bcb787e78c27df6174d54d9e3b92721f7e864ba15
14
+ !! source digest: sha256:513e68996a8c79ad93ba532d1b774d8869e589388549ada67f4f4dae70b85071
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Mature
16
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
22
  :alt: License: AGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github
@@ -19,7 +19,7 @@
19
19
 
20
20
  {
21
21
  "name": "Suministro Inmediato de Información en el IVA",
22
- "version": "17.0.1.1.1",
22
+ "version": "17.0.1.2.0",
23
23
  "category": "Accounting & Finance",
24
24
  "website": "https://github.com/OCA/l10n-spain",
25
25
  "author": "Acysos S.L.,"
@@ -360,6 +360,13 @@ msgstr ""
360
360
  msgid "ID"
361
361
  msgstr ""
362
362
 
363
+ #. module: l10n_es_aeat_sii_oca
364
+ #: model:ir.model.fields,help:l10n_es_aeat_sii_oca.field_res_company__sii_start_date
365
+ msgid ""
366
+ "If this field is set, the sii won't be enabled on invoices with lower "
367
+ "invoice date. If not set, the sii can be enabled on all invoice dates"
368
+ msgstr ""
369
+
363
370
  #. module: l10n_es_aeat_sii_oca
364
371
  #: model:ir.model.fields,help:l10n_es_aeat_sii_oca.field_account_move__aeat_send_failed
365
372
  #: model:ir.model.fields,help:l10n_es_aeat_sii_oca.field_sii_mixin__aeat_send_failed
@@ -828,6 +835,11 @@ msgstr ""
828
835
  msgid "Sii Refund Specific Invoice Type"
829
836
  msgstr ""
830
837
 
838
+ #. module: l10n_es_aeat_sii_oca
839
+ #: model:ir.model.fields,field_description:l10n_es_aeat_sii_oca.field_res_company__sii_start_date
840
+ msgid "Sii Start Date"
841
+ msgstr ""
842
+
831
843
  #. module: l10n_es_aeat_sii_oca
832
844
  #: model_terms:ir.ui.view,arch_db:l10n_es_aeat_sii_oca.aeat_sii_tax_agency_form_view
833
845
  msgid "Suministro Bienes de Inversión"
@@ -800,11 +800,13 @@ class AccountMove(models.Model):
800
800
  @api.depends(
801
801
  "company_id",
802
802
  "company_id.sii_enabled",
803
+ "company_id.sii_start_date",
803
804
  "journal_id",
804
805
  "journal_id.sii_enabled",
805
806
  "move_type",
806
807
  "fiscal_position_id",
807
808
  "fiscal_position_id.aeat_active",
809
+ "invoice_date",
808
810
  "invoice_line_ids",
809
811
  )
810
812
  def _compute_sii_enabled(self):
@@ -818,17 +820,25 @@ class AccountMove(models.Model):
818
820
  ):
819
821
  invoice.sii_enabled = (
820
822
  (
821
- invoice.fiscal_position_id
822
- and invoice.fiscal_position_id.aeat_active
823
+ (
824
+ invoice.fiscal_position_id
825
+ and invoice.fiscal_position_id.aeat_active
826
+ )
827
+ or not invoice.fiscal_position_id
823
828
  )
824
- or not invoice.fiscal_position_id
825
- ) and (
826
- not dua_sii_exempt_taxes
827
- or not invoice.invoice_line_ids.filtered(
828
- lambda x, dua_taxes=dua_sii_exempt_taxes: any(
829
- [tax.id in dua_taxes for tax in x.tax_ids]
829
+ and (
830
+ not dua_sii_exempt_taxes
831
+ or not invoice.invoice_line_ids.filtered(
832
+ lambda x, dua_taxes=dua_sii_exempt_taxes: any(
833
+ [tax.id in dua_taxes for tax in x.tax_ids]
834
+ )
830
835
  )
831
836
  )
837
+ and (
838
+ not invoice.company_id.sii_start_date
839
+ or not invoice.invoice_date
840
+ or invoice.invoice_date >= invoice.company_id.sii_start_date
841
+ )
832
842
  )
833
843
  else:
834
844
  invoice.sii_enabled = False
@@ -55,6 +55,11 @@ class ResCompany(models.Model):
55
55
  help="By default, the invoice is sent/queued in validation process. "
56
56
  "With manual method, there's a button to send the invoice.",
57
57
  )
58
+ sii_start_date = fields.Date(
59
+ help="If this field is set, the sii won't be enabled on invoices with lower "
60
+ "invoice date. If not set, the sii can be enabled on all invoice dates"
61
+ )
62
+
58
63
  send_mode = fields.Selection(
59
64
  selection=[
60
65
  ("auto", "On validate"),
@@ -96,8 +96,8 @@ class SiiMixin(models.AbstractModel):
96
96
  "greater o equal to 100 000 000,00 euros.",
97
97
  compute="_compute_macrodata",
98
98
  )
99
- sii_send_date = fields.Datetime(string="SII Send Date", index=True)
100
- sii_needs_cancel = fields.Boolean(readonly=True)
99
+ sii_send_date = fields.Datetime(string="SII Send Date", index=True, copy=False)
100
+ sii_needs_cancel = fields.Boolean(readonly=True, copy=False)
101
101
 
102
102
  def _compute_sii_refund_type(self):
103
103
  self.sii_refund_type = False
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6
- <title>Suministro Inmediato de Información en el IVA</title>
6
+ <title>README.rst</title>
7
7
  <style type="text/css">
8
8
 
9
9
  /*
@@ -360,16 +360,21 @@ ul.auto-toc {
360
360
  </style>
361
361
  </head>
362
362
  <body>
363
- <div class="document" id="suministro-inmediato-de-informacion-en-el-iva">
364
- <h1 class="title">Suministro Inmediato de Información en el IVA</h1>
363
+ <div class="document">
365
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="suministro-inmediato-de-informacion-en-el-iva">
370
+ <h1>Suministro Inmediato de Información en el IVA</h1>
366
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367
372
  !! This file is generated by oca-gen-addon-readme !!
368
373
  !! changes will be overwritten. !!
369
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:e7ee59cb7caecaf7b73c801bcb787e78c27df6174d54d9e3b92721f7e864ba15
375
+ !! source digest: sha256:513e68996a8c79ad93ba532d1b774d8869e589388549ada67f4f4dae70b85071
371
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
- <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.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/17.0/l10n_es_aeat_sii_oca"><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-17-0/l10n-spain-17-0-l10n_es_aeat_sii_oca"><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&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377
+ <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/l10n-spain/tree/17.0/l10n_es_aeat_sii_oca"><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-17-0/l10n-spain-17-0-l10n_es_aeat_sii_oca"><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&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
378
  <p>Módulo para la presentación inmediata del IVA
374
379
  <a class="reference external" href="https://www.agenciatributaria.es/static_files/AEAT/Contenidos_Comunes/La_Agencia_Tributaria/Modelos_y_formularios/Suministro_inmediato_informacion/FicherosSuministros/V_1_1/SII_Descripcion_ServicioWeb_v1.1.pdf">https://www.agenciatributaria.es/static_files/AEAT/Contenidos_Comunes/La_Agencia_Tributaria/Modelos_y_formularios/Suministro_inmediato_informacion/FicherosSuministros/V_1_1/SII_Descripcion_ServicioWeb_v1.1.pdf</a></p>
375
380
  <p><strong>Table of contents</strong></p>
@@ -389,7 +394,7 @@ ul.auto-toc {
389
394
  </ul>
390
395
  </div>
391
396
  <div class="section" id="installation">
392
- <h1><a class="toc-backref" href="#toc-entry-1">Installation</a></h1>
397
+ <h2><a class="toc-backref" href="#toc-entry-1">Installation</a></h2>
393
398
  <p>Para instalar esté módulo necesita:</p>
394
399
  <ol class="arabic simple">
395
400
  <li>Libreria Python Zeep, se puede instalar con el comando ‘pip install
@@ -399,7 +404,7 @@ install requests’</li>
399
404
  </ol>
400
405
  </div>
401
406
  <div class="section" id="configuration">
402
- <h1><a class="toc-backref" href="#toc-entry-2">Configuration</a></h1>
407
+ <h2><a class="toc-backref" href="#toc-entry-2">Configuration</a></h2>
403
408
  <p>Para configurar este módulo es necesario:</p>
404
409
  <ol class="arabic simple">
405
410
  <li>En la compañia se almacenan las URLs del servicio SOAP de hacienda.
@@ -422,12 +427,12 @@ privateKey.pem -nodes”</li>
422
427
  </ul>
423
428
  </div>
424
429
  <div class="section" id="usage">
425
- <h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
430
+ <h2><a class="toc-backref" href="#toc-entry-3">Usage</a></h2>
426
431
  <p>Cuando se valida una factura automáticamente envia la comunicación al
427
432
  servidor de AEAT.</p>
428
433
  </div>
429
434
  <div class="section" id="known-issues-roadmap">
430
- <h1><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h1>
435
+ <h2><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h2>
431
436
  <ul class="simple">
432
437
  <li>Comunicación de cobros y pagos.</li>
433
438
  <li>Determinadas facturas intracomunitarias (Articulo 66 RIVA).</li>
@@ -445,7 +450,7 @@ información.</li>
445
450
  </ul>
446
451
  </div>
447
452
  <div class="section" id="bug-tracker">
448
- <h1><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h1>
453
+ <h2><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h2>
449
454
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/l10n-spain/issues">GitHub Issues</a>.
450
455
  In case of trouble, please check there if your issue has already been reported.
451
456
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -453,9 +458,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
453
458
  <p>Do not contact contributors directly about support or help with technical issues.</p>
454
459
  </div>
455
460
  <div class="section" id="credits">
456
- <h1><a class="toc-backref" href="#toc-entry-6">Credits</a></h1>
461
+ <h2><a class="toc-backref" href="#toc-entry-6">Credits</a></h2>
457
462
  <div class="section" id="authors">
458
- <h2><a class="toc-backref" href="#toc-entry-7">Authors</a></h2>
463
+ <h3><a class="toc-backref" href="#toc-entry-7">Authors</a></h3>
459
464
  <ul class="simple">
460
465
  <li>Acysos S.L.</li>
461
466
  <li>Diagram</li>
@@ -470,7 +475,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
470
475
  </ul>
471
476
  </div>
472
477
  <div class="section" id="contributors">
473
- <h2><a class="toc-backref" href="#toc-entry-8">Contributors</a></h2>
478
+ <h3><a class="toc-backref" href="#toc-entry-8">Contributors</a></h3>
474
479
  <ul class="simple">
475
480
  <li>Ignacio Ibeas &lt;<a class="reference external" href="mailto:ignacio&#64;acysos.com">ignacio&#64;acysos.com</a>&gt;</li>
476
481
  <li>Rubén Cerdà &lt;<a class="reference external" href="mailto:ruben.cerda.roig&#64;diagram.es">ruben.cerda.roig&#64;diagram.es</a>&gt;</li>
@@ -505,7 +510,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
505
510
  </ul>
506
511
  </div>
507
512
  <div class="section" id="maintainers">
508
- <h2><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h2>
513
+ <h3><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h3>
509
514
  <p>This module is maintained by the OCA.</p>
510
515
  <a class="reference external image-reference" href="https://odoo-community.org">
511
516
  <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -520,5 +525,6 @@ promote its widespread use.</p>
520
525
  </div>
521
526
  </div>
522
527
  </div>
528
+ </div>
523
529
  </body>
524
530
  </html>
@@ -581,3 +581,14 @@ class TestL10nEsAeatSii(TestL10nEsAeatSiiBase):
581
581
  self.assertTrue(invoice.sii_send_date)
582
582
  self.assertTrue(invoice_sii_failed.sii_send_date)
583
583
  self.assertTrue(invoice_sii_modified.sii_send_date)
584
+
585
+ def test_start_date(self):
586
+ self.company.sii_start_date = "2018-01-01"
587
+ invoice1 = self._create_invoice("out_invoice")
588
+ invoice1.invoice_date = "2019-01-01"
589
+ self.assertTrue(invoice1.sii_enabled)
590
+ invoice2 = self._create_invoice("out_invoice")
591
+ invoice2.invoice_date = "2017-01-01"
592
+ self.assertFalse(invoice2.sii_enabled)
593
+ self.company.sii_start_date = False
594
+ self.assertTrue(invoice2.sii_enabled)
@@ -15,6 +15,7 @@
15
15
  </group>
16
16
  <group invisible="not sii_enabled">
17
17
  <group name="sii_config">
18
+ <field name="sii_start_date" />
18
19
  <field name="sii_test" />
19
20
  <field name="sii_method" />
20
21
  <field name="sii_period" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_es_aeat_sii_oca
3
- Version: 17.0.1.1.1.1
3
+ Version: 17.0.1.2.0
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-account_invoice_refund_link>=17.0dev,<17.1dev
6
6
  Requires-Dist: odoo-addon-l10n_es_aeat>=17.0dev,<17.1dev
@@ -18,6 +18,10 @@ Classifier: Framework :: Odoo :: 17.0
18
18
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
19
19
  Classifier: Development Status :: 6 - Mature
20
20
 
21
+ .. image:: https://odoo-community.org/readme-banner-image
22
+ :target: https://odoo-community.org/get-involved?utm_source=readme
23
+ :alt: Odoo Community Association
24
+
21
25
  =============================================
22
26
  Suministro Inmediato de Información en el IVA
23
27
  =============================================
@@ -27,13 +31,13 @@ Suministro Inmediato de Información en el IVA
27
31
  !! This file is generated by oca-gen-addon-readme !!
28
32
  !! changes will be overwritten. !!
29
33
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
30
- !! source digest: sha256:e7ee59cb7caecaf7b73c801bcb787e78c27df6174d54d9e3b92721f7e864ba15
34
+ !! source digest: sha256:513e68996a8c79ad93ba532d1b774d8869e589388549ada67f4f4dae70b85071
31
35
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
32
36
 
33
37
  .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
34
38
  :target: https://odoo-community.org/page/development-status
35
39
  :alt: Mature
36
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
40
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
37
41
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
38
42
  :alt: License: AGPL-3
39
43
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--spain-lightgray.png?logo=github
@@ -1,6 +1,6 @@
1
- odoo/addons/l10n_es_aeat_sii_oca/README.rst,sha256=eTsMIkx1KKwQfhWh-0vxNFrxA3yIQc7XH7czcz5Tnhg,6300
1
+ odoo/addons/l10n_es_aeat_sii_oca/README.rst,sha256=2D5z_0E-VySSKvIclr6rbk5iorG-FFyYzlGcXHBIRiE,6465
2
2
  odoo/addons/l10n_es_aeat_sii_oca/__init__.py,sha256=9prAcIK97t2LFcopzb31X8maXyZXbonwZa8iVRH0VN4,157
3
- odoo/addons/l10n_es_aeat_sii_oca/__manifest__.py,sha256=NvmMGvhAJ7mYKahimhiPFgYr-tzMF6tzE9I37LWuEvs,2586
3
+ odoo/addons/l10n_es_aeat_sii_oca/__manifest__.py,sha256=4qJ5E47B20Ab8aWMWiBTFgQ7avZMz_JvF8gq6BNiErA,2586
4
4
  odoo/addons/l10n_es_aeat_sii_oca/hooks.py,sha256=cQRnSq705F_gWi565nhBCUSgRxthOkbzgpJHwk1OXZM,1377
5
5
  odoo/addons/l10n_es_aeat_sii_oca/data/aeat_sii_map_data.xml,sha256=Mz562bsz22nPDECTg8vZXjAuQ-xsb6SFLQpHJlaz92E,13306
6
6
  odoo/addons/l10n_es_aeat_sii_oca/data/aeat_sii_mapping_registration_keys_data.xml,sha256=tI-kOHj-wgfnZrz_4gFAIi7jD4UrL79GoiO__nAtm_0,9553
@@ -20,7 +20,7 @@ odoo/addons/l10n_es_aeat_sii_oca/i18n/eu.po,sha256=0T8D8_qWw7ftB3ph3X_XsnGRBiZdb
20
20
  odoo/addons/l10n_es_aeat_sii_oca/i18n/fr.po,sha256=TS5IEvbw7tCbL98qj7oXfiGRfb2GuvjS0VdMwiKwTiI,49711
21
21
  odoo/addons/l10n_es_aeat_sii_oca/i18n/gl.po,sha256=myEYwApGjAZ6EA4_HXq8xCasDg1ZrE3Qy7HqR_fAeuo,49939
22
22
  odoo/addons/l10n_es_aeat_sii_oca/i18n/hr.po,sha256=9JCWWvbqSpRMgvpwcKOtrwIvtDjJi0hW1tLh0E4pbEc,49723
23
- odoo/addons/l10n_es_aeat_sii_oca/i18n/l10n_es_aeat_sii_oca.pot,sha256=lV5o6sbH4HxXQ1WQBMOMKsSpEUdoLAvBSMcP3wSBCbg,49044
23
+ odoo/addons/l10n_es_aeat_sii_oca/i18n/l10n_es_aeat_sii_oca.pot,sha256=c4VTKFxXobH-slARV-hZlfY739YYOoHsTcCT4sPS6Os,49490
24
24
  odoo/addons/l10n_es_aeat_sii_oca/i18n/nl.po,sha256=3xykuPRaW7ZiCUwVe5c9SE2PpIK-OWFhAU5f_NYQsxY,49516
25
25
  odoo/addons/l10n_es_aeat_sii_oca/i18n/pl.po,sha256=tBRX0CJBOFHBrJvjip88fIfzoyILbgfJ3xS9rS3bR-s,49761
26
26
  odoo/addons/l10n_es_aeat_sii_oca/i18n/pt.po,sha256=wVPTTAylsvVBX5dIJ35B6DNW49-6jgBTaqpGHV0ZfwU,49635
@@ -33,14 +33,14 @@ odoo/addons/l10n_es_aeat_sii_oca/i18n/vi.po,sha256=MBMXHzzTsy_rK1BWeNIRCaOOoYNFg
33
33
  odoo/addons/l10n_es_aeat_sii_oca/models/__init__.py,sha256=iZGpxJVgy8yUoo81EHNqFKYuvvA0mOxDszFCI5Y5i1A,307
34
34
  odoo/addons/l10n_es_aeat_sii_oca/models/account_fiscal_position.py,sha256=Eba7POj9Jwsh4lPiLBwrT6EgnKEuWzppZU9j0pv2lSM,2002
35
35
  odoo/addons/l10n_es_aeat_sii_oca/models/account_journal.py,sha256=N_QimwAkUfRiFwcsNBJX_8AfxKcJEzdcm6Uz9eB0Zyw,407
36
- odoo/addons/l10n_es_aeat_sii_oca/models/account_move.py,sha256=yXqPgbPtFe2Mj98rLuKHqi2STj61xopgUT9CgNE8fGQ,40709
36
+ odoo/addons/l10n_es_aeat_sii_oca/models/account_move.py,sha256=1Xq1d9TVX9LAM2BEOxqL7QjwZRGxfD1Cydv_cfVjJqM,41129
37
37
  odoo/addons/l10n_es_aeat_sii_oca/models/aeat_sii_map.py,sha256=JYVARenjkBw91a8HJ9vpa8FHtLX471m99SuaxOwYoE0,2203
38
38
  odoo/addons/l10n_es_aeat_sii_oca/models/aeat_sii_mapping_registration_keys.py,sha256=jwOS3BX83ACe5M7RozIAqEJPX5eGdQ5lsm8dyi1nG5A,708
39
39
  odoo/addons/l10n_es_aeat_sii_oca/models/aeat_tax_agency.py,sha256=Rb_EqRM0gjqL5jQc3HjdtX90PEApO05nPgs61lpkp0U,2506
40
40
  odoo/addons/l10n_es_aeat_sii_oca/models/product_product.py,sha256=NuQv2mrrikYb8sGZuPiMNT8_gKXILv1P2b3hqjlwSLM,1136
41
- odoo/addons/l10n_es_aeat_sii_oca/models/res_company.py,sha256=2RLav4YEqBq29rdHz-dYaRLVqpjoXOelA_S1Et5qRiw,3605
41
+ odoo/addons/l10n_es_aeat_sii_oca/models/res_company.py,sha256=gw6Wz_pXOgH9u1nOYk1aBrGh0PUd7zU08dhC5g_U_aY,3812
42
42
  odoo/addons/l10n_es_aeat_sii_oca/models/res_partner.py,sha256=w1v7P9vDDq_4FpgCYVTnu2DqUPPVBwDohHal0KSBIIs,805
43
- odoo/addons/l10n_es_aeat_sii_oca/models/sii_mixin.py,sha256=71eIa6TO7CemjWwDM9SL9zjlInblrPQh5IFeOxKnwbU,34965
43
+ odoo/addons/l10n_es_aeat_sii_oca/models/sii_mixin.py,sha256=-LIZzd4mFl3GVW3LkItb7Bf86wrK-JTk4e381Fj1KTA,34989
44
44
  odoo/addons/l10n_es_aeat_sii_oca/readme/CONFIGURE.md,sha256=OiXINi9jLQgb1rKnB_RTIfhl-eyaPBWnZZ82DliELfk,886
45
45
  odoo/addons/l10n_es_aeat_sii_oca/readme/CONTRIBUTORS.md,sha256=Cv8Uuam1G-x-vaTA5A2-cYOq2ez-nmW7qfZXbejkDR4,1016
46
46
  odoo/addons/l10n_es_aeat_sii_oca/readme/DESCRIPTION.md,sha256=86SYt-RoUQCDxpPuuONnM0-TOTBfZ-YrBPXVyUhro-c,260
@@ -51,9 +51,9 @@ odoo/addons/l10n_es_aeat_sii_oca/security/ir.model.access.csv,sha256=K6PSPYaRUZm
51
51
  odoo/addons/l10n_es_aeat_sii_oca/static/description/SII_1.jpg,sha256=8w4L5ayayAWEv6Evbixr6rVFCfOkY0yA44cUu-5UQlg,42849
52
52
  odoo/addons/l10n_es_aeat_sii_oca/static/description/icon.png,sha256=OUuKU4891uuwmWQMF4fKyKvCqWuQ3yc4Wg-EfL-x_SM,6100
53
53
  odoo/addons/l10n_es_aeat_sii_oca/static/description/icon.svg,sha256=Q9kGyveMGAwEpGR8y8YpoAJN7dcnxtDKRl7T19LUKg8,5244
54
- odoo/addons/l10n_es_aeat_sii_oca/static/description/index.html,sha256=8ExGsIttLXXU0JskdNdGAAthtXY9MI9b4uyxDZVfKnQ,18635
54
+ odoo/addons/l10n_es_aeat_sii_oca/static/description/index.html,sha256=bj3yW3WpyF0IMnjxbiIYXhXd-25xGoWDeXs6sVjLjJg,18826
55
55
  odoo/addons/l10n_es_aeat_sii_oca/tests/__init__.py,sha256=BCroN6OlmUqvJ8CticoWzBKkWZ7GmC7GOgGILiMuqKA,36
56
- odoo/addons/l10n_es_aeat_sii_oca/tests/test_l10n_es_aeat_sii.py,sha256=rU969x9TS395hdXucQkmOU-AiF8s8WaOfqzmRJMtOOY,22717
56
+ odoo/addons/l10n_es_aeat_sii_oca/tests/test_l10n_es_aeat_sii.py,sha256=QRsAEgKXeYB83ezlH5TICJON_SKRWteNmRXOhMpGqSk,23183
57
57
  odoo/addons/l10n_es_aeat_sii_oca/tests/json/sii_in_invoice_p_iva0_ns_p_iva10_bc_dict.json,sha256=aNTCIW9A0aPnUX9Qd5kR00EbMaVswzYJFGis0QvHQsI,737
58
58
  odoo/addons/l10n_es_aeat_sii_oca/tests/json/sii_in_invoice_p_iva10_bc_dict.json,sha256=PMiptUsqc9lvzEQaXtHDWRciGleYwa9OJnqxSSGrC0Y,701
59
59
  odoo/addons/l10n_es_aeat_sii_oca/tests/json/sii_in_invoice_p_iva10_bc_p_irpf19_p_iva21_sc_p_irpf19_dict.json,sha256=akbMRqHKJ72TyfBeLJz4neKa6vqusva9Ee3Nee-VfBs,787
@@ -80,14 +80,14 @@ odoo/addons/l10n_es_aeat_sii_oca/views/aeat_sii_map_view.xml,sha256=SlZ2LYY52YW8
80
80
  odoo/addons/l10n_es_aeat_sii_oca/views/aeat_sii_mapping_registration_keys_view.xml,sha256=z_bEzb51ls7LmszMvMZZ1Iy9VSMobMNnYGmkqIjHPFM,1863
81
81
  odoo/addons/l10n_es_aeat_sii_oca/views/aeat_tax_agency_view.xml,sha256=7MSqA2HOLa8dc8et2xsVhAQrd3_MbuGxzwM8RPmLPNA,3270
82
82
  odoo/addons/l10n_es_aeat_sii_oca/views/product_view.xml,sha256=GjZDDThDXK5XCspZicsqeC0qXTUVRaFq55e0SrRYvqw,731
83
- odoo/addons/l10n_es_aeat_sii_oca/views/res_company_view.xml,sha256=9UFMSbFhFLxzHIW8HCerDOd6FN0BFOmLQ3cki75GQF0,2306
83
+ odoo/addons/l10n_es_aeat_sii_oca/views/res_company_view.xml,sha256=jMeZNZmPjAAgewzt9bf3fe8Zyg14KPJIu2q2n8vC1XQ,2366
84
84
  odoo/addons/l10n_es_aeat_sii_oca/views/res_partner_views.xml,sha256=42CGeeDaTo7Aitbp93-kPblHIJ3sq7PK3L7yJzbKbdk,627
85
85
  odoo/addons/l10n_es_aeat_sii_oca/wizards/__init__.py,sha256=zM7nei9tRLYBQyWDg-iGt8Ws6mKm2cGlbw2RaIVYrRE,138
86
86
  odoo/addons/l10n_es_aeat_sii_oca/wizards/account_move_reversal.py,sha256=3czrGJUN4q3b-2TwBpDWi9fxOEHyaMvQgb3v3v5oS1M,2422
87
87
  odoo/addons/l10n_es_aeat_sii_oca/wizards/account_move_reversal_views.xml,sha256=hTOaExwXIKyiISclttaxLqjZm-XRINa6hLYwPX-2P-c,1123
88
88
  odoo/addons/l10n_es_aeat_sii_oca/wizards/account_move_send_sii.py,sha256=mt4EBIocQFPQLDRGO3F8ii_EYFmqbY50hSGA0TatY40,1772
89
89
  odoo/addons/l10n_es_aeat_sii_oca/wizards/account_move_send_sii_views.xml,sha256=GrG6eWoww6Y8CW17zfWpKxmwZcNTcLkOuOKETzwR2oA,3167
90
- odoo_addon_l10n_es_aeat_sii_oca-17.0.1.1.1.1.dist-info/METADATA,sha256=hFtVinXXYiUhMiG1XLJgJw2L4TjCO8Xg4rT8FOlz3Ms,7162
91
- odoo_addon_l10n_es_aeat_sii_oca-17.0.1.1.1.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
92
- odoo_addon_l10n_es_aeat_sii_oca-17.0.1.1.1.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
93
- odoo_addon_l10n_es_aeat_sii_oca-17.0.1.1.1.1.dist-info/RECORD,,
90
+ odoo_addon_l10n_es_aeat_sii_oca-17.0.1.2.0.dist-info/METADATA,sha256=HxxIdX-Ikp3QJ_4uHdG1GkpPqTUXpBvELa3EML-MM2A,7325
91
+ odoo_addon_l10n_es_aeat_sii_oca-17.0.1.2.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
92
+ odoo_addon_l10n_es_aeat_sii_oca-17.0.1.2.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
93
+ odoo_addon_l10n_es_aeat_sii_oca-17.0.1.2.0.dist-info/RECORD,,