odoo-addon-l10n-br-fiscal 16.0.11.0.0__py3-none-any.whl → 16.0.11.1.1__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.

@@ -11,7 +11,7 @@ Módulo fiscal brasileiro
11
11
  !! This file is generated by oca-gen-addon-readme !!
12
12
  !! changes will be overwritten. !!
13
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14
- !! source digest: sha256:2c3205a7e95e281d4df51604539037c85c8a2b692415c650d47ac801dc422047
14
+ !! source digest: sha256:b885c7f07dc5927d04d0bba6575996b2c0b26e5fe4e2f251bc508d0ad013578c
15
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16
16
 
17
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -10,7 +10,7 @@
10
10
  "maintainers": ["renatonlima", "rvalyi"],
11
11
  "website": "https://github.com/OCA/l10n-brazil",
12
12
  "development_status": "Production/Stable",
13
- "version": "16.0.11.0.0",
13
+ "version": "16.0.11.1.1",
14
14
  "depends": [
15
15
  "product",
16
16
  "uom_alias",
@@ -546,22 +546,9 @@ class Document(models.Model):
546
546
  for r in self:
547
547
  r.name = r._compute_document_name()
548
548
 
549
- @api.depends(
550
- "fiscal_line_ids.estimate_tax",
551
- "fiscal_line_ids.price_gross",
552
- "fiscal_line_ids.amount_untaxed",
553
- "fiscal_line_ids.amount_tax",
554
- "fiscal_line_ids.amount_taxed",
555
- "fiscal_line_ids.amount_total",
556
- "fiscal_line_ids.financial_total",
557
- "fiscal_line_ids.financial_total_gross",
558
- "fiscal_line_ids.financial_discount_value",
559
- "fiscal_line_ids.amount_tax_included",
560
- "fiscal_line_ids.amount_tax_not_included",
561
- "fiscal_line_ids.amount_tax_withholding",
562
- )
563
- def _compute_fiscal_amount(self):
564
- return super()._compute_fiscal_amount()
549
+ @api.model
550
+ def _get_fiscal_lines_field_name(self):
551
+ return "fiscal_line_ids"
565
552
 
566
553
  def unlink(self):
567
554
  forbidden_states_unlink = [
@@ -609,7 +596,6 @@ class Document(models.Model):
609
596
  )
610
597
  line.fiscal_operation_id = fsc_op_line
611
598
  line._onchange_fiscal_operation_id()
612
- line._onchange_fiscal_operation_line_id()
613
599
 
614
600
  return_docs |= new_doc
615
601
  return return_docs
@@ -66,20 +66,10 @@ class FiscalDocumentMixinMethods(models.AbstractModel):
66
66
  self.document_type_id = self.company_id.document_type_id
67
67
 
68
68
  def _get_amount_lines(self):
69
- """
70
- Hook method to retrieve the document lines used for amount calculations.
71
-
72
- This method should be overridden by models that inherit this mixin
73
- if their fiscal document lines are stored in a field other than
74
- `fiscal_line_ids`. The returned recordset should contain line objects
75
- that have the fiscal amount fields to be summed.
76
-
77
- :return: A recordset of fiscal document line objects.
78
- """
79
- return self.mapped("fiscal_line_ids")
69
+ """Get object lines instances used to compute fiscal fields"""
70
+ return self.mapped(self._get_fiscal_lines_field_name())
80
71
 
81
72
  def _get_product_amount_lines(self):
82
- """Get object lines instaces used to compute fields"""
83
73
  fiscal_line_ids = self._get_amount_lines()
84
74
  return fiscal_line_ids.filtered(lambda line: line.product_id.type != "service")
85
75
 
@@ -108,6 +98,30 @@ class FiscalDocumentMixinMethods(models.AbstractModel):
108
98
  elif doc.document_serie_id is None:
109
99
  doc.document_serie_id = False
110
100
 
101
+ @api.model
102
+ def _get_fiscal_lines_field_name(self):
103
+ return "fiscal_line_ids"
104
+
105
+ def _get_fiscal_amount_field_dependencies(self):
106
+ """
107
+ Dynamically get the list of field dependencies.
108
+ """
109
+ if self._abstract:
110
+ return []
111
+ o2m_field_name = self._get_fiscal_lines_field_name()
112
+ target_fields = []
113
+ for field in self._get_amount_fields():
114
+ if (
115
+ field.replace("amount_", "")
116
+ in getattr(self, o2m_field_name)._fields.keys()
117
+ ):
118
+ target_fields.append(field.replace("amount_", ""))
119
+
120
+ return [o2m_field_name] + [
121
+ f"{o2m_field_name}.{target_field}" for target_field in target_fields
122
+ ]
123
+
124
+ @api.depends(lambda self: self._get_fiscal_amount_field_dependencies())
111
125
  def _compute_fiscal_amount(self):
112
126
  """
113
127
  Compute and sum various fiscal amounts from the document lines.
@@ -121,7 +135,7 @@ class FiscalDocumentMixinMethods(models.AbstractModel):
121
135
  """
122
136
 
123
137
  fields = self._get_amount_fields()
124
- for doc in self:
138
+ for doc in self.filtered(lambda m: m.fiscal_operation_id):
125
139
  values = {key: 0.0 for key in fields}
126
140
  for line in doc._get_amount_lines():
127
141
  for field in fields:
@@ -130,9 +144,9 @@ class FiscalDocumentMixinMethods(models.AbstractModel):
130
144
  if field.replace("amount_", "") in line._fields.keys():
131
145
  # FIXME this field creates an error in invoice form
132
146
  if field == "amount_financial_discount_value":
133
- values[
134
- "amount_financial_discount_value"
135
- ] += 0 # line.financial_discount_value
147
+ values["amount_financial_discount_value"] += (
148
+ 0 # line.financial_discount_value
149
+ )
136
150
  else:
137
151
  values[field] += line[field.replace("amount_", "")]
138
152
 
@@ -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:2c3205a7e95e281d4df51604539037c85c8a2b692415c650d47ac801dc422047
375
+ !! source digest: sha256:b885c7f07dc5927d04d0bba6575996b2c0b26e5fe4e2f251bc508d0ad013578c
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-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>
378
378
  <p><img alt="image" src="https://raw.githubusercontent.com/OCA/l10n-brazil/16.0/l10n_br_fiscal/static/img/fiscal_dashboard.png" /></p>
@@ -56,7 +56,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
56
56
 
57
57
  line._onchange_commercial_quantity()
58
58
  line._onchange_fiscal_operation_id()
59
- line._onchange_fiscal_operation_line_id()
60
59
  line._onchange_fiscal_taxes()
61
60
 
62
61
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -178,7 +177,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
178
177
  line._onchange_product_id_fiscal()
179
178
  line._onchange_commercial_quantity()
180
179
  line._onchange_fiscal_operation_id()
181
- line._onchange_fiscal_operation_line_id()
182
180
  line._onchange_fiscal_taxes()
183
181
 
184
182
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -298,7 +296,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
298
296
  line._onchange_product_id_fiscal()
299
297
  line._onchange_commercial_quantity()
300
298
  line._onchange_fiscal_operation_id()
301
- line._onchange_fiscal_operation_line_id()
302
299
  line._onchange_fiscal_taxes()
303
300
 
304
301
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -405,7 +402,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
405
402
  line._onchange_product_id_fiscal()
406
403
  line._onchange_commercial_quantity()
407
404
  line._onchange_fiscal_operation_id()
408
- line._onchange_fiscal_operation_line_id()
409
405
  line._onchange_fiscal_taxes()
410
406
 
411
407
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -512,7 +508,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
512
508
  line._onchange_product_id_fiscal()
513
509
  line._onchange_commercial_quantity()
514
510
  line._onchange_fiscal_operation_id()
515
- line._onchange_fiscal_operation_line_id()
516
511
  line._onchange_fiscal_taxes()
517
512
 
518
513
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -625,7 +620,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
625
620
  )
626
621
 
627
622
  line._onchange_fiscal_operation_id()
628
- line._onchange_fiscal_operation_line_id()
629
623
  line._onchange_fiscal_taxes()
630
624
 
631
625
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -731,7 +725,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
731
725
  line._onchange_product_id_fiscal()
732
726
  line._onchange_commercial_quantity()
733
727
  line._onchange_fiscal_operation_id()
734
- line._onchange_fiscal_operation_line_id()
735
728
  line._onchange_fiscal_taxes()
736
729
 
737
730
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -834,7 +827,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
834
827
  line._onchange_product_id_fiscal()
835
828
  line._onchange_commercial_quantity()
836
829
  line._onchange_fiscal_operation_id()
837
- line._onchange_fiscal_operation_line_id()
838
830
  line._onchange_fiscal_taxes()
839
831
 
840
832
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -925,7 +917,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
925
917
  line._onchange_product_id_fiscal()
926
918
  line._onchange_commercial_quantity()
927
919
  line._onchange_fiscal_operation_id()
928
- line._onchange_fiscal_operation_line_id()
929
920
  line._onchange_fiscal_taxes()
930
921
 
931
922
  if "Revenda" in line.fiscal_operation_line_id.name:
@@ -20,7 +20,6 @@ class TestFiscalDocumentNFSe(TransactionCase):
20
20
  line._onchange_product_id_fiscal()
21
21
  line._onchange_commercial_quantity()
22
22
  line._onchange_fiscal_operation_id()
23
- line._onchange_fiscal_operation_line_id()
24
23
  line._onchange_fiscal_taxes()
25
24
 
26
25
  self.assertEqual(
@@ -45,7 +45,6 @@ class TestTaxBenefit(TransactionCase):
45
45
  line._onchange_product_id_fiscal()
46
46
  line._onchange_commercial_quantity()
47
47
  line._onchange_fiscal_operation_id()
48
- line._onchange_fiscal_operation_line_id()
49
48
  line._onchange_fiscal_taxes()
50
49
 
51
50
  self.assertEqual(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_br_fiscal
3
- Version: 16.0.11.0.0
3
+ Version: 16.0.11.1.1
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
@@ -31,7 +31,7 @@ Módulo fiscal brasileiro
31
31
  !! This file is generated by oca-gen-addon-readme !!
32
32
  !! changes will be overwritten. !!
33
33
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34
- !! source digest: sha256:2c3205a7e95e281d4df51604539037c85c8a2b692415c650d47ac801dc422047
34
+ !! source digest: sha256:b885c7f07dc5927d04d0bba6575996b2c0b26e5fe4e2f251bc508d0ad013578c
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_br_fiscal/README.rst,sha256=u7bkIGd1U7IwfPWHRE0BYuJ4tJhMjjgy23NrHXqBews,13957
1
+ odoo/addons/l10n_br_fiscal/README.rst,sha256=pg7HwMCjlWUuRp62rtpVyoXFunJB0PrPEKsQnM-gXg4,13957
2
2
  odoo/addons/l10n_br_fiscal/__init__.py,sha256=BQXfCjW4ehK1W1j0z6k8xN7Q2LoZBCjjvYDkQt6nSkI,2717
3
- odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=HdBYrwN2NfvzPNHui6OQUBET9QTgMnpnbUl3Yr1L3pg,4894
3
+ odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=CgcKf9TmVMNL2reaO29KNkwdiTTeLgKsjCO_KST1ZKQ,4894
4
4
  odoo/addons/l10n_br_fiscal/tools.py,sha256=HgaCLkPznFxgLfjb76nH36PJ7bN5W7-fdaqtBvM6XC0,4056
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
@@ -69,12 +69,12 @@ odoo/addons/l10n_br_fiscal/models/cst.py,sha256=m3KIalTYxOoiydXje4VHni6knmXZVdR3
69
69
  odoo/addons/l10n_br_fiscal/models/data_abstract.py,sha256=l46d2ViejGvcjPtKxaA0vn4S0qrn8zqo4bGeQU6oOaU,4599
70
70
  odoo/addons/l10n_br_fiscal/models/data_ncm_nbs_abstract.py,sha256=a0K-32ockgmQV5WaljCCSZQYn8YmuYZ0CYqTDct0vLI,6758
71
71
  odoo/addons/l10n_br_fiscal/models/data_product_abstract.py,sha256=wbc3exJQp33aYK8IOJ490JvDWBPCpU0NEkMR6YjaLfQ,793
72
- odoo/addons/l10n_br_fiscal/models/document.py,sha256=URnqXc4KeIcYb1B8lNMuGss9Jv5v-IcoYhFwn717CiA,19948
72
+ odoo/addons/l10n_br_fiscal/models/document.py,sha256=Kn3TFa29QWZLc5-D6ysPjWfyAeegNAqw5uPkXwx282o,19341
73
73
  odoo/addons/l10n_br_fiscal/models/document_line.py,sha256=Y87Bevv0wDWP_oRUUvjKsWdow_dvQEKQ-31KEIdZghY,2032
74
74
  odoo/addons/l10n_br_fiscal/models/document_line_mixin.py,sha256=e-bixaQI0cJzdnUBzbbTJoeEsjfHq09FF_xEPnV0KxM,27787
75
75
  odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=6cmm93C2X8OJ8ZtlhdFySLt9IOvf4zRamfBHhsswQ_o,31705
76
76
  odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=G63Mr1XyX6YXrdCg0bGIjjvrJPmAs8UuzExKYheVOqg,13477
77
- odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=mOQIPCNYfhTfQD1k1XLFqidy0hM69g9iwX8H5Y10BKA,15947
77
+ odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=XYrhXQs1blFCEzwgPGToGkWP7uyUnptKXBRwLRvu_FY,16390
78
78
  odoo/addons/l10n_br_fiscal/models/document_related.py,sha256=SKUToxuoC2eOZAG8pJnBg0o5269JjvLbpvuy0M8zSlQ,4689
79
79
  odoo/addons/l10n_br_fiscal/models/document_serie.py,sha256=Spe7kpgMBFGS_LBv3DpiqTC4WuafTK8LRv53GVR2UcM,4128
80
80
  odoo/addons/l10n_br_fiscal/models/document_supplement.py,sha256=31oRSHT_SaGSf-dQvriweIxZZiTANxkHHupc5kMYfXA,409
@@ -124,7 +124,7 @@ odoo/addons/l10n_br_fiscal/readme/USAGE.md,sha256=Dw3uZaHJCUtV0xFq6VOQvF2G5fS_oS
124
124
  odoo/addons/l10n_br_fiscal/security/fiscal_security.xml,sha256=PxRef68OVjlCVMOJZbhieVxivgKJYJm9r3TiZO4RerA,3362
125
125
  odoo/addons/l10n_br_fiscal/security/ir.model.access.csv,sha256=4R4STg4HCTG37rFb3YBfZRlEJMSX7fU5fwtHHWI9aeY,14195
126
126
  odoo/addons/l10n_br_fiscal/static/description/icon.png,sha256=Vd1HydYBoGCzNfCqxLlch2i2aeCcyxo-uRxWNp6oMbw,14836
127
- odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=SCzSzA5mgelQ_F8EUXW5I9aXBHa1DzjXkTOXWW4qBT8,26637
127
+ odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=pWklIWy5cIjTaNY27AkCTwil0RR-NVWJgC1Fh789pmM,26637
128
128
  odoo/addons/l10n_br_fiscal/static/img/fiscal_dashboard.png,sha256=Q0fpqFNqEXh6m6E1aJfzSKV2tQ9lC1Y-ofUt6qxVupc,151668
129
129
  odoo/addons/l10n_br_fiscal/static/img/fiscal_line.png,sha256=S4Q4OGSzGnbfm4W5sQVvnD4uUzxS6tbJGT_gs3pB4K0,134276
130
130
  odoo/addons/l10n_br_fiscal/static/img/fiscal_operation.png,sha256=2614c1XjxwVznh707e9gujlUXg0ttutKD1ZiSMTqyv8,105871
@@ -132,8 +132,8 @@ odoo/addons/l10n_br_fiscal/static/img/fiscal_total.png,sha256=MaR6ZoM6ZZEaNZk2yn
132
132
  odoo/addons/l10n_br_fiscal/static/src/js/list_renderer_with_button.esm.js,sha256=Ucw7pymMrW2yi_nNrDMvq6ubyub9QMlqH3ZOoaTEHN0,1243
133
133
  odoo/addons/l10n_br_fiscal/tests/__init__.py,sha256=ESupwviZ2P-1nTuwxFBdHRzso41xBOP0kQmhKhYu5VE,366
134
134
  odoo/addons/l10n_br_fiscal/tests/test_cnae.py,sha256=mmskSfWaoFSohjmRbnGci_6Euc9fc2zbhyH5FdyeIeA,616
135
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=DIn9dPw1F-LC7GsFGLe89JQfCUB5wCdH_RAHxfD0CUU,41756
136
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=-Pc7g5fouVnzGzpkmvxurd-a7lImJ-8wZJEruvaQDlQ,1703
135
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=i_6Pmsh5vsiWlRIA7cRKvKH3iU5gfon1k-gLrc6X8og,41270
136
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=NrIfRZ2ehgTk79tNhnuy83Xy2izbY1G-MavknmklyaQ,1649
137
137
  odoo/addons/l10n_br_fiscal/tests/test_fiscal_tax.py,sha256=U6JbuqKTcyyFTiW5FZGqGY5yi_aPKaC6_LWz_3sKdpg,11322
138
138
  odoo/addons/l10n_br_fiscal/tests/test_ibpt.py,sha256=vJKit2Aok-zIk_723nRietLTbVKPstD88vznN2PwMZg,5227
139
139
  odoo/addons/l10n_br_fiscal/tests/test_ibpt_product.py,sha256=h00TpY-tTw3z8U24yTzzvyWkfnKjHqlCbqetBKJNV94,2794
@@ -143,7 +143,7 @@ odoo/addons/l10n_br_fiscal/tests/test_ncm.py,sha256=legCHGki7r8xIC260jKdPpVUNC_Z
143
143
  odoo/addons/l10n_br_fiscal/tests/test_operation.py,sha256=zt3GJh3_z7p4zCFN2VSrUVgCGT7EQJ6GmjMGPIY98cg,480
144
144
  odoo/addons/l10n_br_fiscal/tests/test_partner_profile.py,sha256=aMjOQzygxVMQZnvdAEcR9Wun5igpTBzgOegkjsums68,738
145
145
  odoo/addons/l10n_br_fiscal/tests/test_service_type.py,sha256=k9Ro0pGVsiHslAa1NcLK-FlNnrFEeh394aw2tOF_M5o,556
146
- odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=Dqw04b8G7f9JxZrIHsk5Fdph3GtUfIlWfPak8YL036Q,2156
146
+ odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=LQZNHFmYMNm7T9naWJNHUDs9W-SHaKilvXl8FW_fuM0,2102
147
147
  odoo/addons/l10n_br_fiscal/views/cest_view.xml,sha256=buiOX9AZ4OMHyjHZfoazcQQzjBSE7fT1S0LlYmo_3P4,3162
148
148
  odoo/addons/l10n_br_fiscal/views/cfop_view.xml,sha256=eSAo01pTaF2AY5_NfWJqY5H3WnaFmzfaSJ6l0DkyEcY,5018
149
149
  odoo/addons/l10n_br_fiscal/views/city_taxation_code.xml,sha256=SnoB8FmZdCzJhqKrEAXG3VVZDBIlDBpIq3oKycbx6uQ,2104
@@ -192,7 +192,7 @@ odoo/addons/l10n_br_fiscal/views/uom_uom.xml,sha256=i4sQPGhwoKNpzfZFdFYrabXkGXE3
192
192
  odoo/addons/l10n_br_fiscal/wizards/__init__.py,sha256=_sLxjpuJblbtSngjCsnMm7Iur5afF5xLEkAQLu4sy7I,69
193
193
  odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py,sha256=-r25us0vdNCSe11Gnf_tyPtN1qq-JKsL-fgWbPGktRo,2856
194
194
  odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.py,sha256=KsYj5YWWePO7uk0psBsFdnCL71eLWhcyg7_c7J4G6vA,818
195
- odoo_addon_l10n_br_fiscal-16.0.11.0.0.dist-info/METADATA,sha256=FnX-FtEskt1ky7b8MZVBVFB4C3YgrK8JNUukyL8hn1I,14720
196
- odoo_addon_l10n_br_fiscal-16.0.11.0.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
197
- odoo_addon_l10n_br_fiscal-16.0.11.0.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
198
- odoo_addon_l10n_br_fiscal-16.0.11.0.0.dist-info/RECORD,,
195
+ odoo_addon_l10n_br_fiscal-16.0.11.1.1.dist-info/METADATA,sha256=OoUVeiXjXZzqTzalmXo2sNZcJZLJWkBCUyeZDH4xxqE,14720
196
+ odoo_addon_l10n_br_fiscal-16.0.11.1.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
197
+ odoo_addon_l10n_br_fiscal-16.0.11.1.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
198
+ odoo_addon_l10n_br_fiscal-16.0.11.1.1.dist-info/RECORD,,