odoo-addon-l10n-br-fiscal 16.0.2.18.1__py3-none-any.whl → 16.0.2.20.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.

Potentially problematic release.


This version of odoo-addon-l10n-br-fiscal might be problematic. Click here for more details.

@@ -7,7 +7,7 @@ Módulo fiscal brasileiro
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:6e7785fba55331a44c8b06bf80a5be8e81b31630f6061a7c483abbed6c68f8bd
10
+ !! source digest: sha256:b75596aeabd7efae2ae9a3d0025d7fa4f9080a2a2d1a0926c808f2f76603d488
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -10,7 +10,7 @@
10
10
  "maintainers": ["renatonlima"],
11
11
  "website": "https://github.com/OCA/l10n-brazil",
12
12
  "development_status": "Production/Stable",
13
- "version": "16.0.2.18.1",
13
+ "version": "16.0.2.20.0",
14
14
  "depends": [
15
15
  "product",
16
16
  "l10n_br_base",
@@ -352,7 +352,9 @@ class FiscalDocumentLineMixinMethods(models.AbstractModel):
352
352
  self.ensure_one()
353
353
  return self.partner_id
354
354
 
355
- @api.onchange("fiscal_operation_id")
355
+ @api.onchange(
356
+ "fiscal_operation_id", "ncm_id", "nbs_id", "cest_id", "service_type_id"
357
+ )
356
358
  def _onchange_fiscal_operation_id(self):
357
359
  if self.fiscal_operation_id:
358
360
  if not self.price_unit:
@@ -746,10 +748,6 @@ class FiscalDocumentLineMixinMethods(models.AbstractModel):
746
748
  if self.ii_customhouse_charges:
747
749
  self._update_fiscal_taxes()
748
750
 
749
- @api.onchange("ncm_id", "nbs_id", "cest_id")
750
- def _onchange_ncm_id(self):
751
- self._onchange_fiscal_operation_id()
752
-
753
751
  @api.onchange("fiscal_tax_ids")
754
752
  def _onchange_fiscal_tax_ids(self):
755
753
  self._update_fiscal_taxes()
@@ -762,11 +760,6 @@ class FiscalDocumentLineMixinMethods(models.AbstractModel):
762
760
  if self.city_taxation_code_id.city_id:
763
761
  self.update({"issqn_fg_city_id": self.city_taxation_code_id.city_id})
764
762
 
765
- @api.onchange("service_type_id")
766
- def _onchange_service_type_id(self):
767
- if self.service_type_id:
768
- self._onchange_fiscal_operation_id()
769
-
770
763
  @api.model
771
764
  def _add_fields_to_amount(self):
772
765
  fields_to_amount = ["insurance_value", "other_value", "freight_value"]
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:6e7785fba55331a44c8b06bf80a5be8e81b31630f6061a7c483abbed6c68f8bd
370
+ !! source digest: sha256:b75596aeabd7efae2ae9a3d0025d7fa4f9080a2a2d1a0926c808f2f76603d488
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
372
  <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/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/l10n-brazil/tree/16.0/l10n_br_fiscal"><img alt="OCA/l10n-brazil" src="https://img.shields.io/badge/github-OCA%2Fl10n--brazil-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/l10n-brazil-16-0/l10n-brazil-16-0-l10n_br_fiscal"><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-brazil&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p><img alt="image" src="https://raw.githubusercontent.com/OCA/l10n-brazil/16.0/l10n_br_fiscal/static/img/fiscal_dashboard.png" /></p>
@@ -54,7 +54,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
54
54
  line.price_unit = original_price_unit
55
55
 
56
56
  line._onchange_commercial_quantity()
57
- line._onchange_ncm_id()
58
57
  line._onchange_fiscal_operation_id()
59
58
  line._onchange_fiscal_operation_line_id()
60
59
  line._onchange_fiscal_taxes()
@@ -178,7 +177,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
178
177
  for line in self.nfe_other_state.fiscal_line_ids:
179
178
  line._onchange_product_id_fiscal()
180
179
  line._onchange_commercial_quantity()
181
- line._onchange_ncm_id()
182
180
  line._onchange_fiscal_operation_id()
183
181
  line._onchange_fiscal_operation_line_id()
184
182
  line._onchange_fiscal_taxes()
@@ -300,7 +298,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
300
298
  for line in self.nfe_not_taxpayer.fiscal_line_ids:
301
299
  line._onchange_product_id_fiscal()
302
300
  line._onchange_commercial_quantity()
303
- line._onchange_ncm_id()
304
301
  line._onchange_fiscal_operation_id()
305
302
  line._onchange_fiscal_operation_line_id()
306
303
  line._onchange_fiscal_taxes()
@@ -409,7 +406,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
409
406
  for line in self.nfe_not_taxpayer_pf.fiscal_line_ids:
410
407
  line._onchange_product_id_fiscal()
411
408
  line._onchange_commercial_quantity()
412
- line._onchange_ncm_id()
413
409
  line._onchange_fiscal_operation_id()
414
410
  line._onchange_fiscal_operation_line_id()
415
411
  line._onchange_fiscal_taxes()
@@ -518,7 +514,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
518
514
  for line in self.nfe_export.fiscal_line_ids:
519
515
  line._onchange_product_id_fiscal()
520
516
  line._onchange_commercial_quantity()
521
- line._onchange_ncm_id()
522
517
  line._onchange_fiscal_operation_id()
523
518
  line._onchange_fiscal_operation_line_id()
524
519
  line._onchange_fiscal_taxes()
@@ -633,7 +628,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
633
628
  }
634
629
  )
635
630
 
636
- line._onchange_ncm_id()
637
631
  line._onchange_fiscal_operation_id()
638
632
  line._onchange_fiscal_operation_line_id()
639
633
  line._onchange_fiscal_taxes()
@@ -741,7 +735,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
741
735
  for line in self.nfe_sn_other_state.fiscal_line_ids:
742
736
  line._onchange_product_id_fiscal()
743
737
  line._onchange_commercial_quantity()
744
- line._onchange_ncm_id()
745
738
  line._onchange_fiscal_operation_id()
746
739
  line._onchange_fiscal_operation_line_id()
747
740
  line._onchange_fiscal_taxes()
@@ -846,7 +839,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
846
839
  for line in self.nfe_sn_not_taxpayer.fiscal_line_ids:
847
840
  line._onchange_product_id_fiscal()
848
841
  line._onchange_commercial_quantity()
849
- line._onchange_ncm_id()
850
842
  line._onchange_fiscal_operation_id()
851
843
  line._onchange_fiscal_operation_line_id()
852
844
  line._onchange_fiscal_taxes()
@@ -939,7 +931,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
939
931
  for line in self.nfe_sn_export.fiscal_line_ids:
940
932
  line._onchange_product_id_fiscal()
941
933
  line._onchange_commercial_quantity()
942
- line._onchange_ncm_id()
943
934
  line._onchange_fiscal_operation_id()
944
935
  line._onchange_fiscal_operation_line_id()
945
936
  line._onchange_fiscal_taxes()
@@ -19,7 +19,6 @@ class TestFiscalDocumentNFSe(TransactionCase):
19
19
  for line in self.nfse_same_state.fiscal_line_ids:
20
20
  line._onchange_product_id_fiscal()
21
21
  line._onchange_commercial_quantity()
22
- line._onchange_ncm_id()
23
22
  line._onchange_fiscal_operation_id()
24
23
  line._onchange_fiscal_operation_line_id()
25
24
  line._onchange_fiscal_taxes()
@@ -41,7 +41,6 @@ class TestTaxBenefit(TransactionCase):
41
41
  for line in self.nfe_tax_benefit.fiscal_line_ids:
42
42
  line._onchange_product_id_fiscal()
43
43
  line._onchange_commercial_quantity()
44
- line._onchange_ncm_id()
45
44
  line._onchange_fiscal_operation_id()
46
45
  line._onchange_fiscal_operation_line_id()
47
46
  line._onchange_fiscal_taxes()
@@ -82,18 +82,13 @@
82
82
  <field name="fiscal_operation_type" />
83
83
  <field name="fiscal_type" />
84
84
  <field name="code" />
85
- <field name="company_id" />
86
- <field name="edoc_purpose" />
87
85
  <field
88
86
  name="company_id"
89
87
  groups="base.group_multi_company"
90
88
  />
89
+ <field name="edoc_purpose" />
91
90
  </group>
92
91
  <group>
93
- <field
94
- name="company_id"
95
- groups="base.group_multi_company"
96
- />
97
92
  <field name="default_price_unit" />
98
93
  <field name="return_fiscal_operation_id" />
99
94
  <field name="inverse_fiscal_operation_id" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_br_fiscal
3
- Version: 16.0.2.18.1
3
+ Version: 16.0.2.20.0
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: erpbrasil.base>=2.3.0
6
6
  Requires-Dist: odoo-addon-l10n_br_base>=16.0dev,<16.1dev
@@ -25,7 +25,7 @@ Módulo fiscal brasileiro
25
25
  !! This file is generated by oca-gen-addon-readme !!
26
26
  !! changes will be overwritten. !!
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
- !! source digest: sha256:6e7785fba55331a44c8b06bf80a5be8e81b31630f6061a7c483abbed6c68f8bd
28
+ !! source digest: sha256:b75596aeabd7efae2ae9a3d0025d7fa4f9080a2a2d1a0926c808f2f76603d488
29
29
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
30
30
 
31
31
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -1,6 +1,6 @@
1
- odoo/addons/l10n_br_fiscal/README.rst,sha256=NwB1hNP7ZneQhlwzLTVWs8V960zi_uJ_emzQrkGTAZ0,13644
1
+ odoo/addons/l10n_br_fiscal/README.rst,sha256=lYva_NyrnDdZPUqT4sI1AHkMh3mjdY3EgZUL1OA66hY,13644
2
2
  odoo/addons/l10n_br_fiscal/__init__.py,sha256=BQXfCjW4ehK1W1j0z6k8xN7Q2LoZBCjjvYDkQt6nSkI,2717
3
- odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=OW5u6vlB6i28z_HYrXRLviUBPqWDexyyxXf9RRHtUkE,4914
3
+ odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=L6Gpo8lYjyJ83Zf1ollhQLgv4xNyRbngHjFZSYUeQfw,4914
4
4
  odoo/addons/l10n_br_fiscal/tools.py,sha256=4oAxP-kPKq3L3xhNdhOivxWakJa-j0ISpVIBCtsB0NQ,4061
5
5
  odoo/addons/l10n_br_fiscal/constants/fiscal.py,sha256=F2a4jYAk2j2Yh1Xw7WeS1GcLfW1DbjeNgEF6l7135wc,14962
6
6
  odoo/addons/l10n_br_fiscal/constants/icms.py,sha256=rHlM6jyRvhrIm03sd6guS1xh7SptADLltPmRJ3C_Vh8,3512
@@ -72,7 +72,7 @@ odoo/addons/l10n_br_fiscal/models/document.py,sha256=ElIDZQtNCm09mckYsZopasNq61B
72
72
  odoo/addons/l10n_br_fiscal/models/document_email.py,sha256=ikGhCrTI18X01RszlCqO0tvhTOKr2d5KJLcj_QA1o_Y,2113
73
73
  odoo/addons/l10n_br_fiscal/models/document_line.py,sha256=ziiAHFNYphxZL-ojPG9f_isepEV0hbQdZgvXpJDIbZw,1380
74
74
  odoo/addons/l10n_br_fiscal/models/document_line_mixin.py,sha256=IPmyPDm7w7-GxhXHuxy399WjbUDTE8WVz8VXo4Wkmro,26862
75
- odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=8Zu9aXbPrC0gqJgresMR8lh9uLQX-e4GCcsBUDUExR4,30332
75
+ odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=uEw6GyR9arzE3XcGozxnKJrSxcpzTycrx2IEfFZq9pQ,30108
76
76
  odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=1Ep0ClxXpMTB_mzikF_3gdA3Nk6N2YxMR8yDq_QoOAg,282
77
77
  odoo/addons/l10n_br_fiscal/models/document_mixin_fields.py,sha256=bN1bDgYvkqpCBlFYivD1Hu4wMIm7gbeZBj1frwmhvgg,12063
78
78
  odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=ZSCYHKTXFfbcARgxHfT_qQckvJNf4jlZZ172Yxr-DGM,12436
@@ -128,15 +128,15 @@ odoo/addons/l10n_br_fiscal/readme/USAGE.md,sha256=Dw3uZaHJCUtV0xFq6VOQvF2G5fS_oS
128
128
  odoo/addons/l10n_br_fiscal/security/fiscal_security.xml,sha256=c4D3MoIsVnkZ1pDY_iw8jM2hBPz3VCkl5JKnm_hkau0,3700
129
129
  odoo/addons/l10n_br_fiscal/security/ir.model.access.csv,sha256=3E9q6uzshDOKbm2zUV8cv2x1EIV3WkAkqjaq4_sOUtM,14918
130
130
  odoo/addons/l10n_br_fiscal/static/description/icon.png,sha256=Vd1HydYBoGCzNfCqxLlch2i2aeCcyxo-uRxWNp6oMbw,14836
131
- odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=qP8rmA5RzHjgaGnMVByL3AeXs7w5sN2SLB1hPjiu0pE,26274
131
+ odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=0ujFKvGg6TOMHj4wHh0NUPQWrq-w6_5JVoI9_pGL9qA,26274
132
132
  odoo/addons/l10n_br_fiscal/static/img/fiscal_dashboard.png,sha256=Q0fpqFNqEXh6m6E1aJfzSKV2tQ9lC1Y-ofUt6qxVupc,151668
133
133
  odoo/addons/l10n_br_fiscal/static/img/fiscal_line.png,sha256=S4Q4OGSzGnbfm4W5sQVvnD4uUzxS6tbJGT_gs3pB4K0,134276
134
134
  odoo/addons/l10n_br_fiscal/static/img/fiscal_operation.png,sha256=2614c1XjxwVznh707e9gujlUXg0ttutKD1ZiSMTqyv8,105871
135
135
  odoo/addons/l10n_br_fiscal/static/img/fiscal_total.png,sha256=MaR6ZoM6ZZEaNZk2ynSmaHjkRUU0SOkeUW5_HbJQS50,132739
136
136
  odoo/addons/l10n_br_fiscal/tests/__init__.py,sha256=uIjGqBHKvBQlMhq9BAfmNKVarzWtTKDdr_e3STjI0DU,415
137
137
  odoo/addons/l10n_br_fiscal/tests/test_cnae.py,sha256=mmskSfWaoFSohjmRbnGci_6Euc9fc2zbhyH5FdyeIeA,616
138
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=r2oQlLvfZxIbbU5VnNG41CuJRXj9g47h9USgS8aTJCs,42536
139
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=-fggELBcd0pgMxoAbWOWRZq8ct6-y5bIpwBK9ZE38yo,1695
138
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=2mmMw2UaaQIavWApUUtoceMpb5PG-TtpaXdSasuHj1E,42212
139
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=VqFRACW6evtW_Sw_AnXnRCewEF7eM2IdA10oNxA-Gok,1659
140
140
  odoo/addons/l10n_br_fiscal/tests/test_fiscal_tax.py,sha256=U6JbuqKTcyyFTiW5FZGqGY5yi_aPKaC6_LWz_3sKdpg,11322
141
141
  odoo/addons/l10n_br_fiscal/tests/test_ibpt.py,sha256=yZyMMc0KwFyWFQ-Ak3zBT9LLL73iCQf_lEQBuV_Nr9w,5207
142
142
  odoo/addons/l10n_br_fiscal/tests/test_ibpt_product.py,sha256=h00TpY-tTw3z8U24yTzzvyWkfnKjHqlCbqetBKJNV94,2794
@@ -147,7 +147,7 @@ odoo/addons/l10n_br_fiscal/tests/test_operation.py,sha256=zt3GJh3_z7p4zCFN2VSrUV
147
147
  odoo/addons/l10n_br_fiscal/tests/test_partner_profile.py,sha256=aMjOQzygxVMQZnvdAEcR9Wun5igpTBzgOegkjsums68,738
148
148
  odoo/addons/l10n_br_fiscal/tests/test_service_type.py,sha256=k9Ro0pGVsiHslAa1NcLK-FlNnrFEeh394aw2tOF_M5o,556
149
149
  odoo/addons/l10n_br_fiscal/tests/test_subsequent_operation.py,sha256=JcZQyQUSq68OeNfCLgUMX7-XgXruWNSNnFgzaUtp864,2569
150
- odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=AEwJCFwdsuh1bCTrcwFqrGeLqUWyt-pKLsOmalv5nR8,2163
150
+ odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=xwuJO0omFPNXLH9dhtH-36H1tqOnd68Ka4DTPxhaPl4,2127
151
151
  odoo/addons/l10n_br_fiscal/tests/test_uom_uom.py,sha256=yv9sUrP8lMCyx5CbJR-fPGlomtUBXMSMBnVExR1dS1E,718
152
152
  odoo/addons/l10n_br_fiscal/views/cest_view.xml,sha256=buiOX9AZ4OMHyjHZfoazcQQzjBSE7fT1S0LlYmo_3P4,3162
153
153
  odoo/addons/l10n_br_fiscal/views/cfop_view.xml,sha256=zmcFDnMfNl3ec7XfdHOxlyMgBZJrZtiXdbcTxZgERGc,3772
@@ -172,7 +172,7 @@ odoo/addons/l10n_br_fiscal/views/nbs_view.xml,sha256=Ppxam4qvt70964CN8cRtwp1ju83
172
172
  odoo/addons/l10n_br_fiscal/views/ncm_view.xml,sha256=vCByd_ptFmKW_PyaXPyztvHLc03_XDdNjhSSAGIDJVY,7495
173
173
  odoo/addons/l10n_br_fiscal/views/operation_dashboard_view.xml,sha256=BtVkJI_5F3nxnVD6NILP6ehyvp0IzwfnVhSolOxLMD0,6834
174
174
  odoo/addons/l10n_br_fiscal/views/operation_line_view.xml,sha256=CIUctSbae9lsgdvCSswxxY327BfsCmxOgfjoBoxCZHY,5035
175
- odoo/addons/l10n_br_fiscal/views/operation_view.xml,sha256=vO2-G5yfI0RDs5UUbOrmuyvEqrW1dru0jkiIarken9M,7088
175
+ odoo/addons/l10n_br_fiscal/views/operation_view.xml,sha256=uZcxni6nISlvb0LFzNiV_MMBBDDdJH7V-wftb10zU38,6850
176
176
  odoo/addons/l10n_br_fiscal/views/partner_profile_view.xml,sha256=BQ1jNjQiqJ0xene-UrgwNctSaVLCF93_sG4e85WGEOA,3876
177
177
  odoo/addons/l10n_br_fiscal/views/product_genre_view.xml,sha256=mtQEF6e5UdMentTAWPH4TTAixe5JJmPgf_vzcbx2224,2198
178
178
  odoo/addons/l10n_br_fiscal/views/product_product_view.xml,sha256=3Yk72EIsRSf5evbOWEpWMrHDuP8-WdJmImMx6f2XUu8,5446
@@ -199,7 +199,7 @@ odoo/addons/l10n_br_fiscal/views/uom_uom.xml,sha256=pqq2l0Vd8nz3oJBoe2GERQFMB3I5
199
199
  odoo/addons/l10n_br_fiscal/wizards/__init__.py,sha256=_sLxjpuJblbtSngjCsnMm7Iur5afF5xLEkAQLu4sy7I,69
200
200
  odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py,sha256=-r25us0vdNCSe11Gnf_tyPtN1qq-JKsL-fgWbPGktRo,2856
201
201
  odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.py,sha256=KsYj5YWWePO7uk0psBsFdnCL71eLWhcyg7_c7J4G6vA,818
202
- odoo_addon_l10n_br_fiscal-16.0.2.18.1.dist-info/METADATA,sha256=2Hyl9FyHHqSa_iTNe_b4lm48oR3stUC5uR3DDslLwlE,14316
203
- odoo_addon_l10n_br_fiscal-16.0.2.18.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
204
- odoo_addon_l10n_br_fiscal-16.0.2.18.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
205
- odoo_addon_l10n_br_fiscal-16.0.2.18.1.dist-info/RECORD,,
202
+ odoo_addon_l10n_br_fiscal-16.0.2.20.0.dist-info/METADATA,sha256=jWlVJyekTHNsEQg3BU4ha7nWuNYjOhB1_YOJ5hY6ud8,14316
203
+ odoo_addon_l10n_br_fiscal-16.0.2.20.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
204
+ odoo_addon_l10n_br_fiscal-16.0.2.20.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
205
+ odoo_addon_l10n_br_fiscal-16.0.2.20.0.dist-info/RECORD,,