odoo-addon-l10n-it-vat-registries 16.0.1.4.1__py3-none-any.whl → 16.0.1.5.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.
@@ -11,7 +11,7 @@ ITA - Registri IVA
11
11
  !! This file is generated by oca-gen-addon-readme !!
12
12
  !! changes will be overwritten. !!
13
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14
- !! source digest: sha256:0fd7c3b0eb046b82b35cbeed8d8f765a21a173ca04063f11853b24941d5a6bf2
14
+ !! source digest: sha256:dd2a1c799f721788f66d6faca2d0207447093ebe338581c10a1e0bae39a277e8
15
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16
16
 
17
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -6,7 +6,7 @@
6
6
  # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
7
7
 
8
8
  {
9
- "version": "16.0.1.4.1",
9
+ "version": "16.0.1.5.0",
10
10
  "name": "ITA - Registri IVA",
11
11
  "category": "Localization/Italy",
12
12
  "author": "Agile Business Group, Odoo Community Association (OCA), LinkIt Srl",
@@ -86,6 +86,16 @@ msgstr ""
86
86
  msgid "Display Name"
87
87
  msgstr ""
88
88
 
89
+ #. module: l10n_it_vat_registries
90
+ #: model:ir.model.fields,field_description:l10n_it_vat_registries.field_wizard_registro_iva__enable_currency
91
+ msgid "Enable currency values"
92
+ msgstr ""
93
+
94
+ #. module: l10n_it_vat_registries
95
+ #: model:ir.model.fields,help:l10n_it_vat_registries.field_wizard_registro_iva__enable_currency
96
+ msgid "Enable currency values in the report"
97
+ msgstr ""
98
+
89
99
  #. module: l10n_it_vat_registries
90
100
  #: model:ir.model.fields,field_description:l10n_it_vat_registries.field_account_tax_registry__entry_order
91
101
  #: model:ir.model.fields,field_description:l10n_it_vat_registries.field_wizard_registro_iva__entry_order
@@ -314,6 +324,11 @@ msgstr ""
314
324
  msgid "TOTAL"
315
325
  msgstr ""
316
326
 
327
+ #. module: l10n_it_vat_registries
328
+ #: model_terms:ir.ui.view,arch_db:l10n_it_vat_registries.report_registro_iva
329
+ msgid "TOTAL (currency)"
330
+ msgstr ""
331
+
317
332
  #. module: l10n_it_vat_registries
318
333
  #. odoo-python
319
334
  #: code:addons/l10n_it_vat_registries/wizard/report_registro_iva_xlsx.py:0
@@ -30,6 +30,8 @@ class ReportRegistroIva(models.AbstractModel):
30
30
  "to_date": self._format_date(data["form"]["to_date"], date_format),
31
31
  "registry_type": data["form"]["registry_type"],
32
32
  "invoice_total": self._get_move_total,
33
+ "currency_total": self._get_currency_move_total,
34
+ "show_currency": self._show_currency,
33
35
  "tax_registry_name": data["form"]["tax_registry_name"],
34
36
  "env": self.env,
35
37
  "formatLang": formatLang,
@@ -40,9 +42,16 @@ class ReportRegistroIva(models.AbstractModel):
40
42
  "show_full_contact_addess": data["form"]["show_full_contact_addess"],
41
43
  "date_format": date_format,
42
44
  "year_footer": data["form"]["year_footer"],
45
+ "enable_currency": data["form"]["enable_currency"],
46
+ "company_currency_symbol": self.env.company.currency_id.symbol,
43
47
  }
44
48
  return docargs
45
49
 
50
+ def _show_currency(self, move):
51
+ if move.currency_id != self.env.company.currency_id:
52
+ return True
53
+ return False
54
+
46
55
  def _get_move(self, move_ids):
47
56
  move_list = self.env["account.move"].browse(move_ids)
48
57
  return move_list
@@ -90,21 +99,29 @@ class ReportRegistroIva(models.AbstractModel):
90
99
  res[tax.id] = {
91
100
  "name": tax.name,
92
101
  "base": 0,
102
+ "base_currency": 0,
93
103
  "tax": 0,
104
+ "tax_currency": 0,
94
105
  }
95
106
  tax_amount = move_line.debit - move_line.credit
107
+ tax_amount_currency = move_line.amount_currency
96
108
 
97
109
  if "receivable" in move.financial_type:
98
110
  # otherwise refund would be positive and invoices
99
111
  # negative.
100
112
  tax_amount = -tax_amount
113
+ tax_amount_currency = -tax_amount_currency
101
114
 
102
115
  if is_base:
103
116
  # recupero il valore dell'imponibile
104
117
  res[tax.id]["base"] += tax_amount
118
+ res[tax.id]["base_currency"] += tax_amount_currency
105
119
  else:
106
120
  # recupero il valore dell'imposta
107
121
  res[tax.id]["tax"] += tax_amount
122
+ res[tax.id]["tax_currency"] += tax_amount_currency
123
+
124
+ res[tax.id]["currency_symbol"] = move_line.currency_id.symbol
108
125
 
109
126
  return res
110
127
 
@@ -143,6 +160,9 @@ class ReportRegistroIva(models.AbstractModel):
143
160
  "tax_code_name": tax._get_tax_name(),
144
161
  "base": amounts_by_tax_id[tax_id]["base"],
145
162
  "tax": amounts_by_tax_id[tax_id]["tax"],
163
+ "base_currency": amounts_by_tax_id[tax_id]["base_currency"],
164
+ "tax_currency": amounts_by_tax_id[tax_id]["tax_currency"],
165
+ "currency_symbol": amounts_by_tax_id[tax_id]["currency_symbol"],
146
166
  "index": index,
147
167
  "invoice_type": invoice_type,
148
168
  "invoice_date": (move.invoice_date or move.date or ""),
@@ -182,6 +202,24 @@ class ReportRegistroIva(models.AbstractModel):
182
202
  total = -total
183
203
  return total
184
204
 
205
+ def _get_currency_move_total(self, move):
206
+ total_currency = 0.0
207
+ receivable_payable_found = False
208
+ for move_line in move.line_ids:
209
+ if move_line.account_id.account_type == "asset_receivable":
210
+ total_currency += move_line.amount_currency
211
+ receivable_payable_found = True
212
+ elif move_line.account_id.account_type == "liability_payable":
213
+ total_currency += move_line.amount_currency
214
+ receivable_payable_found = True
215
+ if receivable_payable_found:
216
+ total_currency = abs(total_currency)
217
+ else:
218
+ total_currency = abs(move.amount_currency)
219
+ if "refund" in move.move_type:
220
+ total_currency = -total_currency
221
+ return total_currency
222
+
185
223
  def _compute_totals_tax(self, tax, data):
186
224
  """
187
225
  Returns:
@@ -26,6 +26,12 @@
26
26
  />
27
27
  <thead>
28
28
  <tr class="first_th_row">
29
+ <t t-if="enable_currency">
30
+ <t
31
+ t-set="columns_number"
32
+ t-value="columns_number + 1"
33
+ />
34
+ </t>
29
35
  <td
30
36
  t-att-colspan="columns_number"
31
37
  style="padding:10;"
@@ -49,6 +55,10 @@
49
55
  </t>
50
56
  <th class="left_without_line" />
51
57
  <th class="right_without_line">TOTAL</th>
58
+ <th
59
+ t-if="enable_currency"
60
+ class="right_without_line"
61
+ >TOTAL (currency)</th>
52
62
  </tr>
53
63
  <tr style="page-break-inside: avoid" name="vat_header_tax">
54
64
  <t t-if="registry_type != 'corrispettivi'">
@@ -62,6 +72,10 @@
62
72
  <th class="right_with_line_bottom">Taxable</th>
63
73
  <th class="right_with_line_bottom">Tax</th>
64
74
  <th class="right_with_line_bottom" />
75
+ <th
76
+ t-if="enable_currency"
77
+ class="right_with_line_bottom"
78
+ />
65
79
  </tr>
66
80
  </t>
67
81
  </thead>
@@ -179,7 +193,14 @@
179
193
  <!-- totale -->
180
194
  <td class="right_without_line_bold"><div
181
195
  style="page-break-inside: avoid"
182
- t-esc="formatLang(env, invoice_total(move))"
196
+ t-esc="company_currency_symbol + ' ' + formatLang(env, invoice_total(move))"
197
+ /></td>
198
+ <td
199
+ t-if="enable_currency and show_currency(move)"
200
+ class="right_without_line_bold"
201
+ ><div
202
+ style="page-break-inside: avoid"
203
+ t-esc="line['currency_symbol'] + ' ' + formatLang(env, currency_total(move))"
183
204
  /></td>
184
205
  </tr>
185
206
  </t>
@@ -202,14 +223,18 @@
202
223
  <!-- base -->
203
224
  <td class="right_without_line"><div
204
225
  style="page-break-inside: avoid"
205
- t-esc="formatLang(env, line['base'])"
226
+ t-esc="company_currency_symbol + ' ' + formatLang(env, line['base'])"
206
227
  /></td>
207
228
  <!-- tax -->
208
229
  <td class="right_without_line"><div
209
230
  style="page-break-inside: avoid"
210
- t-esc="formatLang(env, line['tax'])"
231
+ t-esc="company_currency_symbol + ' ' + formatLang(env, line['tax'])"
211
232
  /></td>
212
233
  <td class="left_without_line" />
234
+ <td
235
+ t-if="enable_currency"
236
+ class="right_without_line"
237
+ />
213
238
  </tr>
214
239
  </t>
215
240
  </t>
@@ -372,7 +372,7 @@ ul.auto-toc {
372
372
  !! This file is generated by oca-gen-addon-readme !!
373
373
  !! changes will be overwritten. !!
374
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
375
- !! source digest: sha256:0fd7c3b0eb046b82b35cbeed8d8f765a21a173ca04063f11853b24941d5a6bf2
375
+ !! source digest: sha256:dd2a1c799f721788f66d6faca2d0207447093ebe338581c10a1e0bae39a277e8
376
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
377
377
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.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-italy/tree/16.0/l10n_it_vat_registries"><img alt="OCA/l10n-italy" src="https://img.shields.io/badge/github-OCA%2Fl10n--italy-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/l10n-italy-16-0/l10n-italy-16-0-l10n_it_vat_registries"><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-italy&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
378
378
  <p>Law: Decreto del Presidente della Repubblica del 26 ottobre 1972 n. 633
@@ -45,6 +45,9 @@ class WizardRegistroIva(models.TransientModel):
45
45
  year_footer = fields.Char(
46
46
  string="Year for Footer", help="Value printed near number of page in the footer"
47
47
  )
48
+ enable_currency = fields.Boolean(
49
+ string="Enable currency values", help="Enable currency values in the report"
50
+ )
48
51
 
49
52
  @api.onchange("tax_registry_id")
50
53
  def on_change_tax_registry_id(self):
@@ -100,6 +103,7 @@ class WizardRegistroIva(models.TransientModel):
100
103
  datas_form["fiscal_page_base"] = self.fiscal_page_base
101
104
  datas_form["registry_type"] = self.layout_type
102
105
  datas_form["year_footer"] = self.year_footer
106
+ datas_form["enable_currency"] = self.enable_currency
103
107
 
104
108
  lang_code = self.env.company.partner_id.lang
105
109
  lang = self.env["res.lang"]
@@ -20,6 +20,9 @@
20
20
  <group>
21
21
  <field name="year_footer" />
22
22
  </group>
23
+ <group>
24
+ <field name="enable_currency" />
25
+ </group>
23
26
  <separator string="Journals" colspan="2" />
24
27
  <group>
25
28
  <field name="tax_registry_id" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_it_vat_registries
3
- Version: 16.0.1.4.1
3
+ Version: 16.0.1.5.0
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-account_tax_balance>=16.0dev,<16.1dev
6
6
  Requires-Dist: odoo-addon-date_range>=16.0dev,<16.1dev
@@ -31,7 +31,7 @@ ITA - Registri IVA
31
31
  !! This file is generated by oca-gen-addon-readme !!
32
32
  !! changes will be overwritten. !!
33
33
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
- !! source digest: sha256:0fd7c3b0eb046b82b35cbeed8d8f765a21a173ca04063f11853b24941d5a6bf2
34
+ !! source digest: sha256:dd2a1c799f721788f66d6faca2d0207447093ebe338581c10a1e0bae39a277e8
35
35
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
36
36
 
37
37
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -1,6 +1,6 @@
1
- odoo/addons/l10n_it_vat_registries/README.rst,sha256=rsia7xOwzib70VfTFuOjU5H3LcSnQ0VmfF7rQU7zNaE,6209
1
+ odoo/addons/l10n_it_vat_registries/README.rst,sha256=RwKqLVl7npk5RLCaWMb07OgI7i3ESPlmkbSNEDsiCLQ,6209
2
2
  odoo/addons/l10n_it_vat_registries/__init__.py,sha256=JqDSCLCkAweuTaARbhG1B8Lkrgg-ZjR4Jbkty4ySwok,107
3
- odoo/addons/l10n_it_vat_registries/__manifest__.py,sha256=-rglbPE3X-J7maOLY38xeirrEr4WknIVrTP8JO96CL8,1211
3
+ odoo/addons/l10n_it_vat_registries/__manifest__.py,sha256=uW9NKItduRg_HEKqsztH83Qk4VoZMyAwOaPwySi7hiM,1211
4
4
  odoo/addons/l10n_it_vat_registries/i18n/am.po,sha256=Wk3fJQOJn08Bcfg-g2ZQhnC7Mzaw0xwZd6_c9gM5jfo,15202
5
5
  odoo/addons/l10n_it_vat_registries/i18n/ar.po,sha256=MZ1Q7A5rS4JndT9KBpCJfD08ygU71qdOL87PPvJMRhc,15360
6
6
  odoo/addons/l10n_it_vat_registries/i18n/bg.po,sha256=_77JVoh_QNKXdJ_9uJNMQlR6WgJDVJv4LIOVk1KLr30,15334
@@ -44,7 +44,7 @@ odoo/addons/l10n_it_vat_registries/i18n/id.po,sha256=2VJCYn4fqu6Nzul7RyoXGiuARBS
44
44
  odoo/addons/l10n_it_vat_registries/i18n/it.po,sha256=OQa6x4W1S5jP5uO7eS2flPDWo1j6aMHf_OZ7GRjIEZg,17597
45
45
  odoo/addons/l10n_it_vat_registries/i18n/ja.po,sha256=3sD7OGELS4odSkUstlqXMUOIPJlk26O-ELx9-XECt-A,15212
46
46
  odoo/addons/l10n_it_vat_registries/i18n/ko.po,sha256=JIEbHo-ZymKj29rmmOsc1yLo3dtAACI5MtddLY8aJ9c,15213
47
- odoo/addons/l10n_it_vat_registries/i18n/l10n_it_vat_registries.pot,sha256=i924DegGbppjrZvH97eP7cDLzJvRkpXsrao3cnp1cAE,14812
47
+ odoo/addons/l10n_it_vat_registries/i18n/l10n_it_vat_registries.pot,sha256=sPehhKa0Er_9ECmTcl2k-GTW92HUDsufe2WODy680Lc,15330
48
48
  odoo/addons/l10n_it_vat_registries/i18n/lo.po,sha256=l2ifdzkUx7H2i2dtbBUUh8B7BSlDf3WUbYFGPOENmYM,15136
49
49
  odoo/addons/l10n_it_vat_registries/i18n/lt.po,sha256=iyojKIi3hwVBd-geDvb9E74ORHgAyAp2Or4VyrvKN1c,15327
50
50
  odoo/addons/l10n_it_vat_registries/i18n/lt_LT.po,sha256=MfHA17ihluwd4CJaw7L2ftUSmfyaODVdHaAACBw3TZs,15289
@@ -77,28 +77,28 @@ odoo/addons/l10n_it_vat_registries/models/__init__.py,sha256=6yHBq2GwnY9MZDjKUL-
77
77
  odoo/addons/l10n_it_vat_registries/models/account.py,sha256=-7xeUNAFzf4jDYqcBWiCTtOfieqMHgAN5sf2b5pqzLs,1092
78
78
  odoo/addons/l10n_it_vat_registries/models/account_journal.py,sha256=lVrBFity9mn7nyXczTVANWVDNvwwFcMcUd7xWYWCokc,457
79
79
  odoo/addons/l10n_it_vat_registries/models/account_tax_registry.py,sha256=-JVfjQi5_Mt6Wj6Ng4m0Qxoix-9-UKlmxyAXoMiS7HQ,998
80
- odoo/addons/l10n_it_vat_registries/models/vat_registry.py,sha256=7AYixFjWmMKK1EdUbz_oQoXaeAH6XrZJulppAjXi3zE,6858
80
+ odoo/addons/l10n_it_vat_registries/models/vat_registry.py,sha256=OxMLE-80M6VDr0Ltv4eHiAa3nh7BjY6PJV2Sm6M-L4s,8682
81
81
  odoo/addons/l10n_it_vat_registries/readme/CONFIGURE.md,sha256=mAKbQwtdJtsHAQPCnanJtyfJtIjmJTofGd0aG5oKv38,2066
82
82
  odoo/addons/l10n_it_vat_registries/readme/CONTRIBUTORS.md,sha256=mqsG-iv709t8dWOrPg2cvF3yDtnut8xBXCVh8K1xpqs,191
83
83
  odoo/addons/l10n_it_vat_registries/readme/CREDITS.md,sha256=adgy2b0E705AYaKihyQS_KXVgutgR3jQ33Se-BZvMF8,89
84
84
  odoo/addons/l10n_it_vat_registries/readme/DESCRIPTION.md,sha256=wtW9ElobuDdencAdgRd6QzLDx1C5eeDzQOnDOLK-C4Q,96
85
85
  odoo/addons/l10n_it_vat_registries/readme/USAGE.md,sha256=DtBGHIk1gM695eu4_SwWqSeIyuX1mf4M5kArnojCkpY,792
86
- odoo/addons/l10n_it_vat_registries/report/report_registro_iva.xml,sha256=iLc_gCAxAJjxjNFZrfxs9QrwuoytO8P19tqMdXPycmI,20055
86
+ odoo/addons/l10n_it_vat_registries/report/report_registro_iva.xml,sha256=w795VKeQ9Idqx2a_GrqEczgjR08kSg62E7O4jHt1ejk,21684
87
87
  odoo/addons/l10n_it_vat_registries/report/reports.xml,sha256=PvUnJig1ovVTWakXlCNV0olE4O_bsjvNchJP7I-04iw,1059
88
88
  odoo/addons/l10n_it_vat_registries/security/ir.model.access.csv,sha256=60vgVGdBp4z_DW3k8g10Xsqn_lC3ISmsXRS8yFMIVSw,651
89
89
  odoo/addons/l10n_it_vat_registries/security/vat_registry_security.xml,sha256=Pv8n9zR3hlhuZcl2IgL76OuS8c1Q090zzB1TrpXHCMs,441
90
90
  odoo/addons/l10n_it_vat_registries/static/description/icon.png,sha256=xbRU_cSM3yeaxH2HArBlJ9csFUu0GYQitvLydbJnpAM,6167
91
- odoo/addons/l10n_it_vat_registries/static/description/index.html,sha256=C4_pmCmJTeRecR3H2nOk1ndhXajHkvma8k8nsdTyimM,16906
91
+ odoo/addons/l10n_it_vat_registries/static/description/index.html,sha256=_OybCsiNvyUTLnHfeQLkLlw4RTRH8IHTNhhzmCuXvp8,16906
92
92
  odoo/addons/l10n_it_vat_registries/tests/__init__.py,sha256=dZJwSFx0LQvIqMT8R2Pw_Z0kaW0spztW5C03jAy5bPY,93
93
93
  odoo/addons/l10n_it_vat_registries/tests/test_registry.py,sha256=JRJXzMcWjEKTPhNskNkl4uWAz60QF9hqgr0FX44sMY4,4233
94
94
  odoo/addons/l10n_it_vat_registries/views/account_journal_view.xml,sha256=TQwBBKqaIb-8mzfD4fBtaRGCVyqZZT5lTiltFrekZEI,493
95
95
  odoo/addons/l10n_it_vat_registries/views/account_tax_registry_view.xml,sha256=iXC4sFLvbX_SwmprHLjP_MyTsxXdKQeAhh2Mx_Xddoc,1377
96
96
  odoo/addons/l10n_it_vat_registries/views/account_view.xml,sha256=AHJosvsC4zr9CU8JKcPJr7crLsDPjBTlyAwUVWrrdyA,470
97
97
  odoo/addons/l10n_it_vat_registries/wizard/__init__.py,sha256=mGqx5yofct5XGCZHYycLIyem9PVQYnLqcByZZgGQ8a0,137
98
- odoo/addons/l10n_it_vat_registries/wizard/print_registro_iva.py,sha256=OqZ6R-37D3Ycc3EEMzj08CDZzk0I74TS55q4ameRlP8,4956
99
- odoo/addons/l10n_it_vat_registries/wizard/print_registro_iva.xml,sha256=7Xd9r4BS9kUTuuMOJ-TSGtk7R7lvIY7su20hwr5J9jc,3121
98
+ odoo/addons/l10n_it_vat_registries/wizard/print_registro_iva.py,sha256=japz011Eyb5yeOmlK1A56D_Cgd4LluUjxnc6q6mX4es,5146
99
+ odoo/addons/l10n_it_vat_registries/wizard/print_registro_iva.xml,sha256=sPdK4Aq-lxLNWn0njIpnLl10CscXfhkcw3OS0Zw8gNM,3235
100
100
  odoo/addons/l10n_it_vat_registries/wizard/report_registro_iva_xlsx.py,sha256=Z5kJMyiwpNUiuOUZCaEFxxtSTKqPxIPfw95QzT6N0g4,5479
101
- odoo_addon_l10n_it_vat_registries-16.0.1.4.1.dist-info/METADATA,sha256=bTJz8EMZGtKA2K-bZUT4jxqvaV4-yyqYG_0lmc4LwUo,7042
102
- odoo_addon_l10n_it_vat_registries-16.0.1.4.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
- odoo_addon_l10n_it_vat_registries-16.0.1.4.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
- odoo_addon_l10n_it_vat_registries-16.0.1.4.1.dist-info/RECORD,,
101
+ odoo_addon_l10n_it_vat_registries-16.0.1.5.0.dist-info/METADATA,sha256=J95Ps8j4Q10uUJyN-R0cD4KuIDaW8-JaV99zmGj16Bo,7042
102
+ odoo_addon_l10n_it_vat_registries-16.0.1.5.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
103
+ odoo_addon_l10n_it_vat_registries-16.0.1.5.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
104
+ odoo_addon_l10n_it_vat_registries-16.0.1.5.0.dist-info/RECORD,,