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

Files changed (27) hide show
  1. odoo/addons/l10n_br_fiscal/README.rst +1 -1
  2. odoo/addons/l10n_br_fiscal/__manifest__.py +1 -1
  3. odoo/addons/l10n_br_fiscal/demo/fiscal_document_demo.xml +2 -90
  4. odoo/addons/l10n_br_fiscal/demo/fiscal_document_nfse_demo.xml +0 -4
  5. odoo/addons/l10n_br_fiscal/demo/fiscal_operation_demo.xml +2 -2
  6. odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot +24 -24
  7. odoo/addons/l10n_br_fiscal/i18n/pt_BR.po +33 -24
  8. odoo/addons/l10n_br_fiscal/migrations/17.0.3.0.0/pre-migration.py +30 -0
  9. odoo/addons/l10n_br_fiscal/models/document.py +1 -6
  10. odoo/addons/l10n_br_fiscal/models/document_line.py +35 -5
  11. odoo/addons/l10n_br_fiscal/models/document_line_mixin.py +63 -12
  12. odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py +74 -52
  13. odoo/addons/l10n_br_fiscal/models/document_mixin.py +3 -3
  14. odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py +28 -142
  15. odoo/addons/l10n_br_fiscal/models/document_related.py +1 -1
  16. odoo/addons/l10n_br_fiscal/security/ir.model.access.csv +1 -1
  17. odoo/addons/l10n_br_fiscal/static/description/index.html +1 -1
  18. odoo/addons/l10n_br_fiscal/tests/test_document_edition.py +113 -0
  19. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py +0 -11
  20. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py +0 -1
  21. odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py +0 -1
  22. odoo/addons/l10n_br_fiscal/views/document_line_view.xml +3 -3
  23. odoo/addons/l10n_br_fiscal/views/document_view.xml +6 -6
  24. {odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info → odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info}/METADATA +2 -2
  25. {odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info → odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info}/RECORD +27 -26
  26. {odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info → odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info}/WHEEL +0 -0
  27. {odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info → odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info}/top_level.txt +0 -0
@@ -12,6 +12,10 @@ class TestDocumentEdition(TransactionCase):
12
12
  def setUpClass(cls):
13
13
  super().setUpClass()
14
14
  cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
15
+ cls.user = cls.env.user
16
+ cls.company = cls.env.ref("l10n_br_base.empresa_lucro_presumido")
17
+ cls.user.company_ids |= cls.company
18
+ cls.user.company_id = cls.company.id
15
19
 
16
20
  def test_basic_doc_edition(self):
17
21
  doc_form = Form(
@@ -141,3 +145,112 @@ class TestDocumentEdition(TransactionCase):
141
145
  self.assertEqual(doc.fiscal_line_ids[0].fiscal_price, 112)
142
146
  self.assertEqual(doc.fiscal_line_ids[0].quantity, 10)
143
147
  self.assertEqual(doc.fiscal_line_ids[0].fiscal_quantity, 5)
148
+
149
+ def test_landed_costs_by_line_and_by_total(self):
150
+ """
151
+ Tests both landed cost scenarios: 'by line' and 'by total'.
152
+ 1. By Line: Enters costs on lines and verifies the header totals.
153
+ 2. By Total: Enters costs on the header and verifies lines distribution.
154
+ """
155
+ self.env.user.groups_id |= self.env.ref("l10n_br_fiscal.group_user")
156
+ product1 = self.env.ref("product.product_product_6")
157
+ product2 = self.env.ref("product.product_product_7")
158
+
159
+ # Part 1: Test with delivery_costs = 'line'
160
+ # ----------------------------------------------------
161
+ self.company.delivery_costs = "line"
162
+ doc_form = Form(self.env["l10n_br_fiscal.document"])
163
+ doc_form.company_id = self.company
164
+ doc_form.partner_id = self.env.ref("l10n_br_base.res_partner_cliente1_sp")
165
+ doc_form.fiscal_operation_id = self.env.ref("l10n_br_fiscal.fo_venda")
166
+
167
+ with doc_form.fiscal_line_ids.new() as line1:
168
+ line1.product_id = product1
169
+ line1.fiscal_operation_line_id = self.env.ref(
170
+ "l10n_br_fiscal.fo_venda_venda"
171
+ )
172
+ line1.price_unit = 1000.0
173
+ line1.quantity = 2.0 # Gross: 2000
174
+ line1.freight_value = 10.0
175
+ line1.insurance_value = 20.0
176
+ line1.other_value = 5.0
177
+
178
+ with doc_form.fiscal_line_ids.new() as line2:
179
+ line2.product_id = product2
180
+ line2.fiscal_operation_line_id = self.env.ref(
181
+ "l10n_br_fiscal.fo_venda_venda"
182
+ )
183
+ line2.price_unit = 500.0
184
+ line2.quantity = 1.0 # Gross: 500
185
+ line2.freight_value = 4.0
186
+ line2.insurance_value = 6.0
187
+ line2.other_value = 2.0
188
+
189
+ doc = doc_form.save()
190
+
191
+ self.assertEqual(doc.company_id.delivery_costs, "line")
192
+ # Assert header totals are the SUM of line values
193
+ self.assertAlmostEqual(doc.amount_freight_value, 14.0) # 10.0 + 4.0
194
+ self.assertAlmostEqual(doc.amount_insurance_value, 26.0) # 20.0 + 6.0
195
+ self.assertAlmostEqual(doc.amount_other_value, 7.0) # 5.0 + 2.0
196
+
197
+ # Assert final fiscal totals (bottom-up calculation)
198
+ # price_gross = (1000*2) + (500*1) = 2500
199
+ # landed_costs = 14 + 26 + 7 = 47
200
+ # fiscal_amount_untaxed (IPI Base) = 2500 + 47 = 2547
201
+ self.assertAlmostEqual(doc.fiscal_amount_untaxed, 2547.00)
202
+ # fiscal_amount_tax (IPI) = (2035 * 3.25%) + (512 * 5%) = 66.14 + 25.60 = 91.74
203
+ self.assertAlmostEqual(doc.fiscal_amount_tax, 91.74, places=2)
204
+ # fiscal_amount_total = 2547.00 + 91.74 = 2638.74
205
+ self.assertAlmostEqual(doc.fiscal_amount_total, 2638.74, places=2)
206
+
207
+ # Part 2: Test with delivery_costs = 'total'
208
+ # ----------------------------------------------------
209
+ self.company.delivery_costs = "total"
210
+ doc_form_edit = Form(doc)
211
+ # Set new header totals, which should trigger inverse methods to distribute
212
+ doc_form_edit.amount_freight_value = 30.0
213
+ doc_form_edit.amount_insurance_value = 60.0
214
+ doc_form_edit.amount_other_value = 90.0
215
+ doc_after_total_update = doc_form_edit.save()
216
+
217
+ line1 = doc_after_total_update.fiscal_line_ids[0]
218
+ line2 = doc_after_total_update.fiscal_line_ids[1]
219
+
220
+ # Assert values were distributed proportionally to price_gross
221
+ # (2000 vs 500 -> 80% vs 20%)
222
+ # Freight: 30.0 * 0.8 = 24.0 | 30.0 * 0.2 = 6.0
223
+ self.assertAlmostEqual(line1.freight_value, 24.0)
224
+ self.assertAlmostEqual(line2.freight_value, 6.0)
225
+ # Insurance: 60.0 * 0.8 = 48.0 | 60.0 * 0.2 = 12.0
226
+ self.assertAlmostEqual(line1.insurance_value, 48.0)
227
+ self.assertAlmostEqual(line2.insurance_value, 12.0)
228
+ # Other: 90.0 * 0.8 = 72.0 | 90.0 * 0.2 = 18.0
229
+ self.assertAlmostEqual(line1.other_value, 72.0)
230
+ self.assertAlmostEqual(line2.other_value, 18.0)
231
+
232
+ # Assert final fiscal totals are recomputed correctly (top-down calculation)
233
+ # price_gross = 2500
234
+ # landed_costs = 30 + 60 + 90 = 180
235
+ # fiscal_amount_untaxed (IPI Base) = 2500 + 180 = 2680
236
+ self.assertAlmostEqual(doc_after_total_update.fiscal_amount_untaxed, 2680.00)
237
+ # Line 1 IPI Base = 2000 (product) + 24 (freight) + 48 (insurance)
238
+ # + 72 (other) = 2144
239
+ # Line 1 IPI Value = 2144 * 3.25% = 69.68
240
+ self.assertAlmostEqual(line1.ipi_base, 2144.00)
241
+ self.assertAlmostEqual(line1.ipi_value, 69.68, places=2)
242
+
243
+ # Line 2 IPI Base = 500 (product) + 6 (freight) + 12 (insurance)
244
+ # + 18 (other) = 536
245
+ # Line 2 IPI Value = 536 * 5% = 26.80
246
+ self.assertAlmostEqual(line2.ipi_base, 536.00)
247
+ self.assertAlmostEqual(line2.ipi_value, 26.80, places=2)
248
+
249
+ # fiscal_amount_tax (IPI) = 69.68 + 26.80 = 96.48
250
+ self.assertAlmostEqual(
251
+ doc_after_total_update.fiscal_amount_tax, 96.48, places=2
252
+ )
253
+ # fiscal_amount_total = 2680.00 + 96.48 = 2776.48
254
+ self.assertAlmostEqual(
255
+ doc_after_total_update.fiscal_amount_total, 2776.48, places=2
256
+ )
@@ -40,8 +40,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
40
40
  def test_nfe_same_state(self):
41
41
  """Test NFe same state."""
42
42
  for line in self.nfe_same_state.fiscal_line_ids:
43
- line._onchange_product_id_fiscal()
44
-
45
43
  # Restore the original price_unit value,
46
44
  # as the product change might have altered it.
47
45
  line.price_unit = 100
@@ -163,7 +161,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
163
161
  def test_nfe_other_state(self):
164
162
  """Test NFe other state."""
165
163
  for line in self.nfe_other_state.fiscal_line_ids:
166
- line._onchange_product_id_fiscal()
167
164
  line._onchange_fiscal_operation_id()
168
165
  line._onchange_fiscal_taxes()
169
166
 
@@ -278,7 +275,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
278
275
  def test_nfe_not_taxpayer(self):
279
276
  """Test NFe not taxpayer."""
280
277
  for line in self.nfe_not_taxpayer.fiscal_line_ids:
281
- line._onchange_product_id_fiscal()
282
278
  line._onchange_fiscal_operation_id()
283
279
  line._onchange_fiscal_taxes()
284
280
 
@@ -380,7 +376,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
380
376
  def test_nfe_not_taxpayer_not_company(self):
381
377
  """Test NFe not taxpayer not Company."""
382
378
  for line in self.nfe_not_taxpayer_pf.fiscal_line_ids:
383
- line._onchange_product_id_fiscal()
384
379
  line._onchange_fiscal_operation_id()
385
380
  line._onchange_fiscal_taxes()
386
381
 
@@ -482,7 +477,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
482
477
  def test_nfe_export(self):
483
478
  """Test NFe export."""
484
479
  for line in self.nfe_export.fiscal_line_ids:
485
- line._onchange_product_id_fiscal()
486
480
  line._onchange_fiscal_operation_id()
487
481
  line._onchange_fiscal_taxes()
488
482
 
@@ -576,8 +570,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
576
570
  def test_nfe_sn_same_state(self):
577
571
  """Test NFe Simples Nacional same state."""
578
572
  for line in self.nfe_sn_same_state.fiscal_line_ids:
579
- line._onchange_product_id_fiscal()
580
-
581
573
  # set fake estimate tax
582
574
  line.ncm_id.tax_estimate_ids.create(
583
575
  {
@@ -689,7 +681,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
689
681
  def test_nfe_sn_other_state(self):
690
682
  """Test NFe SN other state."""
691
683
  for line in self.nfe_sn_other_state.fiscal_line_ids:
692
- line._onchange_product_id_fiscal()
693
684
  line._onchange_fiscal_operation_id()
694
685
  line._onchange_fiscal_taxes()
695
686
 
@@ -787,7 +778,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
787
778
  def test_nfe_sn_not_taxpayer(self):
788
779
  """Test NFe SN not taxpayer."""
789
780
  for line in self.nfe_sn_not_taxpayer.fiscal_line_ids:
790
- line._onchange_product_id_fiscal()
791
781
  line._onchange_fiscal_operation_id()
792
782
  line._onchange_fiscal_taxes()
793
783
 
@@ -872,7 +862,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
872
862
  def test_nfe_sn_export(self):
873
863
  """Test NFe SN export."""
874
864
  for line in self.nfe_sn_export.fiscal_line_ids:
875
- line._onchange_product_id_fiscal()
876
865
  line._onchange_fiscal_operation_id()
877
866
  line._onchange_fiscal_taxes()
878
867
 
@@ -15,7 +15,6 @@ class TestFiscalDocumentNFSe(TransactionCase):
15
15
  """Test NFSe same state."""
16
16
 
17
17
  for line in self.nfse_same_state.fiscal_line_ids:
18
- line._onchange_product_id_fiscal()
19
18
  line._onchange_fiscal_operation_id()
20
19
  line._onchange_fiscal_taxes()
21
20
 
@@ -40,7 +40,6 @@ class TestTaxBenefit(TransactionCase):
40
40
  """Test NFe with tax benefit."""
41
41
 
42
42
  for line in self.nfe_tax_benefit.fiscal_line_ids:
43
- line._onchange_product_id_fiscal()
44
43
  line._onchange_fiscal_operation_id()
45
44
  line._onchange_fiscal_taxes()
46
45
 
@@ -102,13 +102,13 @@
102
102
  <page name="amounts" string="Amounts">
103
103
  <group>
104
104
  <group>
105
- <field name="amount_untaxed" />
105
+ <field name="fiscal_amount_untaxed" />
106
106
  <field name="amount_fiscal" />
107
- <field name="amount_tax" />
107
+ <field name="fiscal_amount_tax" />
108
108
  <field name="estimate_tax" />
109
109
  </group>
110
110
  <group>
111
- <field name="amount_total" />
111
+ <field name="fiscal_amount_total" />
112
112
  <field name="amount_tax_withholding" />
113
113
  <field name="amount_taxed" />
114
114
  </group>
@@ -71,9 +71,9 @@
71
71
  <field name="document_date" />
72
72
  <field name="fiscal_operation_id" />
73
73
  <field name="partner_id" />
74
- <field name="amount_untaxed" />
75
- <field name="amount_tax" />
76
- <field name="amount_total" />
74
+ <field name="fiscal_amount_untaxed" />
75
+ <field name="fiscal_amount_tax" />
76
+ <field name="fiscal_amount_total" />
77
77
  <field name="state" column_invisible="True" />
78
78
  <field
79
79
  name="state_edoc"
@@ -315,7 +315,7 @@
315
315
  name="fiscal_tax_ids"
316
316
  widget="many2many_tags"
317
317
  />
318
- <field name="amount_total" sum="Total" />
318
+ <field name="fiscal_amount_total" sum="Total" />
319
319
  </tree>
320
320
  </field>
321
321
  </page>
@@ -413,8 +413,8 @@
413
413
  readonly="delivery_costs == 'line' and not force_compute_delivery_costs_by_total"
414
414
  />
415
415
  <field name="amount_estimate_tax" />
416
- <field name="amount_tax" />
417
- <field name="amount_total" />
416
+ <field name="fiscal_amount_tax" />
417
+ <field name="fiscal_amount_total" />
418
418
  <field name="amount_tax_withholding" />
419
419
  <field name="amount_financial_total" />
420
420
  <field name="amount_financial_total_gross" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_br_fiscal
3
- Version: 17.0.2.1.0
3
+ Version: 17.0.3.1.0.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>=17.0dev,<17.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:486f72a947ff411ae1ec91ca2ada5d0f563c8421580c7d069ef01f3bbbd9b5f7
34
+ !! source digest: sha256:a94263259afc7260a25f60fd10ada9ac820d816d2f4a157bb688764b76b7fe27
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=_cIizz4UWSqwbeaTGdCu-WQFhXBaYpHU5o_joK86y40,13957
1
+ odoo/addons/l10n_br_fiscal/README.rst,sha256=KC-I_Wby0uYc8IoAedHDIBKaOvwczkgPn3CmeLS03Uk,13957
2
2
  odoo/addons/l10n_br_fiscal/__init__.py,sha256=Iwzjf1CRLVwgTXF__HLC1O-nmME3nuMQZTq8SVYo0tk,2667
3
- odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=pI1Nh47aRbNkWCcR7xZEfIKT_1eqQ3ZVo05kRQPOcd8,4961
3
+ odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=YPjWsy5cnnieAnjxEXDbFs7QpyNvA7JlVw2EBlybor0,4961
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
@@ -45,16 +45,17 @@ odoo/addons/l10n_br_fiscal/data/uom_data.xml,sha256=bDVsZn9KA5ozkZuPC9cyylPlsBtX
45
45
  odoo/addons/l10n_br_fiscal/demo/__init__.py,sha256=D9IO9xsEyTSXTF03sJ836cHDsB3snXXizs1SUA2IvwA,4420
46
46
  odoo/addons/l10n_br_fiscal/demo/city_taxation_code_demo.xml,sha256=tVMji5bhxl7cfsf48JjtwHfVVyMOm28WA9H5K6Zr2R0,476
47
47
  odoo/addons/l10n_br_fiscal/demo/company_demo.xml,sha256=XPZE-3nHNYdeSGkJ7XamGAWM7Vs5AwhFBl-3yZCc2fA,13429
48
- odoo/addons/l10n_br_fiscal/demo/fiscal_document_demo.xml,sha256=IdsvMDxVtxn3PoSvScEaOHGgJngPxRHOZwSGEd69z0c,33787
49
- odoo/addons/l10n_br_fiscal/demo/fiscal_document_nfse_demo.xml,sha256=yXaU_tYNUGwTgSpUvm59_6Kej58bHwD_n-wcpiCxxiY,1546
50
- odoo/addons/l10n_br_fiscal/demo/fiscal_operation_demo.xml,sha256=Va_eLyQwHug8ZVgQ8lPkJyiU7zs8KU-ABqBk0RM4n3o,493
48
+ odoo/addons/l10n_br_fiscal/demo/fiscal_document_demo.xml,sha256=JZaijq2XArz1INNES9pDFZqkxsxunGJJ7_W633WciXM,30065
49
+ odoo/addons/l10n_br_fiscal/demo/fiscal_document_nfse_demo.xml,sha256=pTYdPHc-QVu2XPyPA_7hvjZdisxV0mEBBpMULvmhl0M,1363
50
+ odoo/addons/l10n_br_fiscal/demo/fiscal_operation_demo.xml,sha256=RH6LvZ_rthjm8NxTPgvakdIjV_VrIJoD5NfEB4zusA8,507
51
51
  odoo/addons/l10n_br_fiscal/demo/icms_tax_definition_demo.xml,sha256=38sImUwueccEEBrTnQ8_e4f614U10DIh8r9PYEXYexg,1033
52
52
  odoo/addons/l10n_br_fiscal/demo/partner_demo.xml,sha256=dPFBshkjUmIdkp5X4UPDVtFcDcOPHEj9VZs06SXUklE,7173
53
53
  odoo/addons/l10n_br_fiscal/demo/product_demo.xml,sha256=xaJuXOdRp_DSWxrkoKaC6HAuMpgCGjDe9KHh_-iOxAo,83287
54
54
  odoo/addons/l10n_br_fiscal/demo/res_users_demo.xml,sha256=zwDfPw56a3_Z181Rt4YtfVv13x_Wquo-sKjYF6SgJhE,607
55
- odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot,sha256=9vzdiF6zSnmc_F5UP4VeW6QE1RuJCs5NppAgGKHgDzc,382518
56
- odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=SSLtCEqi6u15DIwoqPX_KVitIn9E1mdqJ_SotrvBe20,455307
55
+ odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot,sha256=OXMoSrD57QkhAgNkZ0moO-kLKMMXPOnH-fc1ePeZyyk,382623
56
+ odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=7uoqhuk1hSRU9H5r2QO-ufvkXzlBMYCe06rxS9w4hBw,455526
57
57
  odoo/addons/l10n_br_fiscal/migrations/17.0.2.0.0/pre-migration.py,sha256=pOsGHg7PEz_k2qKeaa0jgqM1xHFpynWZNCrkAloE_vc,745
58
+ odoo/addons/l10n_br_fiscal/migrations/17.0.3.0.0/pre-migration.py,sha256=lCubp50-qtGUwXGw8BBlyS5fcNZW3aRFZD6mWUqHmKc,827
58
59
  odoo/addons/l10n_br_fiscal/models/__init__.py,sha256=k_CKUrIJ7Qt_mWsa6ctlIe_EAHfKd4ZN13M7Rlpvk4o,1608
59
60
  odoo/addons/l10n_br_fiscal/models/cest.py,sha256=0lYMJqJxvE4jzsg8sUAXphHBHNSBCJ-LEa-ma0ZtAMA,1703
60
61
  odoo/addons/l10n_br_fiscal/models/cfop.py,sha256=uA_kvyXZbRfhjQLsrxFk_Ofp3LxMdsdltdmMduQZDeQ,5215
@@ -65,13 +66,13 @@ odoo/addons/l10n_br_fiscal/models/cst.py,sha256=m3KIalTYxOoiydXje4VHni6knmXZVdR3
65
66
  odoo/addons/l10n_br_fiscal/models/data_abstract.py,sha256=x17KB3_mJ7JwPrmloaaOllFS6SBLhZhS6BJ8IzeYdm0,4600
66
67
  odoo/addons/l10n_br_fiscal/models/data_ncm_nbs_abstract.py,sha256=a0K-32ockgmQV5WaljCCSZQYn8YmuYZ0CYqTDct0vLI,6758
67
68
  odoo/addons/l10n_br_fiscal/models/data_product_abstract.py,sha256=wbc3exJQp33aYK8IOJ490JvDWBPCpU0NEkMR6YjaLfQ,793
68
- odoo/addons/l10n_br_fiscal/models/document.py,sha256=eRDrcUGXrh1pE-TKPO6ktTd0B6gu98V6BcWihaox8do,15997
69
- odoo/addons/l10n_br_fiscal/models/document_line.py,sha256=W_8uQz-cn8hIljATy91XYIkD0PrkZzW58RVVgqVYyc8,2590
70
- odoo/addons/l10n_br_fiscal/models/document_line_mixin.py,sha256=GqIvZCWf2dVwm0UGrqffZS2RaWaNqpNRcO5QnnzPkBs,43762
71
- odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=SRZ-jQonCIy3-zQsp4VL4wsUsjX0YZWBf_v4WyXo6sw,33907
72
- odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=xZehluko5aUkDwEk6VKtD0ooY9JBN3DODbqYx6xdRFk,13322
73
- odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=hGTGxgCFbDkpapoTyaKLggz-P_MEBtHig6oTyYDYK1o,15433
74
- odoo/addons/l10n_br_fiscal/models/document_related.py,sha256=SKUToxuoC2eOZAG8pJnBg0o5269JjvLbpvuy0M8zSlQ,4689
69
+ odoo/addons/l10n_br_fiscal/models/document.py,sha256=DfAdBdi9sOnFW1P4D6IjHeD4d8inctH7r2ZHeGh9f74,15817
70
+ odoo/addons/l10n_br_fiscal/models/document_line.py,sha256=pycbresixkkg5CtWItiJxzWgF0vM8CLEAywdUz_iC90,3407
71
+ odoo/addons/l10n_br_fiscal/models/document_line_mixin.py,sha256=_8ZTQoZMC4KZyDhu5ngMo37rdFr7PzmSU_V91NJQWNE,45015
72
+ odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=CNoqsz7FkfTPAKG4a-h4Csf2yBK2ccD-NF_nhni3Ce0,34590
73
+ odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=GkoNxIAUrzwWh5cYZAm5KD_qBIN-mSQ8phQJdYOlOCg,13343
74
+ odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=Rlv4khSkeIDHEXKO_MvEJTOGHbYMQYAo2f_SwRKbWuo,9694
75
+ odoo/addons/l10n_br_fiscal/models/document_related.py,sha256=zPc9ubJVCsawhd2HxNBD8ebo6XnVPFzgDOegw6vYEmk,4696
75
76
  odoo/addons/l10n_br_fiscal/models/document_serie.py,sha256=LvEbK8kBl8wJe2qugz5TJzoFs2g3DktCnOSXYCJtKCU,4189
76
77
  odoo/addons/l10n_br_fiscal/models/document_supplement.py,sha256=31oRSHT_SaGSf-dQvriweIxZZiTANxkHHupc5kMYfXA,409
77
78
  odoo/addons/l10n_br_fiscal/models/document_type.py,sha256=JMxmMjJYLAGxCatRWnBEw3bDY8I6ghgGNpAVQ1uhytk,1962
@@ -118,9 +119,9 @@ odoo/addons/l10n_br_fiscal/readme/INSTALL.md,sha256=o2UqimrZMd9MsHpwuO6McKJxOGpx
118
119
  odoo/addons/l10n_br_fiscal/readme/ROADMAP.md,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
119
120
  odoo/addons/l10n_br_fiscal/readme/USAGE.md,sha256=Dw3uZaHJCUtV0xFq6VOQvF2G5fS_oSBCFqwJyXbt1RY,247
120
121
  odoo/addons/l10n_br_fiscal/security/fiscal_security.xml,sha256=QgqzdExfkca0lMt9kmcymVQj_DISZSKJZ8Ea1qO6e28,3167
121
- odoo/addons/l10n_br_fiscal/security/ir.model.access.csv,sha256=RIVYOOLQ2cOWGp9f8hvKflwglZxAN6exGcOwqCEgDuw,14369
122
+ odoo/addons/l10n_br_fiscal/security/ir.model.access.csv,sha256=MQb64W6Es5ChkVqKBit6bHWKyAtrkgO_VamAaSNhvCQ,14359
122
123
  odoo/addons/l10n_br_fiscal/static/description/icon.png,sha256=Vd1HydYBoGCzNfCqxLlch2i2aeCcyxo-uRxWNp6oMbw,14836
123
- odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=93mOwfUkADpDhejvaIYeL8yZyffNg-BdpI4XOLpyk20,26637
124
+ odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=-ELcOSo9j14UF1cvy6PAoeKWBLFZDdkhtQP0nRn-ico,26637
124
125
  odoo/addons/l10n_br_fiscal/static/img/fiscal_dashboard.png,sha256=Q0fpqFNqEXh6m6E1aJfzSKV2tQ9lC1Y-ofUt6qxVupc,151668
125
126
  odoo/addons/l10n_br_fiscal/static/img/fiscal_line.png,sha256=S4Q4OGSzGnbfm4W5sQVvnD4uUzxS6tbJGT_gs3pB4K0,134276
126
127
  odoo/addons/l10n_br_fiscal/static/img/fiscal_operation.png,sha256=2614c1XjxwVznh707e9gujlUXg0ttutKD1ZiSMTqyv8,105871
@@ -128,9 +129,9 @@ odoo/addons/l10n_br_fiscal/static/img/fiscal_total.png,sha256=MaR6ZoM6ZZEaNZk2yn
128
129
  odoo/addons/l10n_br_fiscal/static/src/js/list_renderer_with_button.esm.js,sha256=Ucw7pymMrW2yi_nNrDMvq6ubyub9QMlqH3ZOoaTEHN0,1243
129
130
  odoo/addons/l10n_br_fiscal/tests/__init__.py,sha256=83m4BimGb-6EseEmmCVaKTSel5GB_vkzbI3YZi4mStE,393
130
131
  odoo/addons/l10n_br_fiscal/tests/test_cnae.py,sha256=QAY1BX_OztHsnGE1O47d0Cz2Cpr7FaRix7-dRgESBs0,581
131
- odoo/addons/l10n_br_fiscal/tests/test_document_edition.py,sha256=wd4EEnl-Tipr06Psjt5_xb-pqEozbgxfbIYQvrMnT28,6256
132
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=Q0ZSCjaqAYNKsrrYEeBBLqxhfaUvmd-XhVHADQoPlQw,39985
133
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=nEMaaWfv-sb4o48c1-l7mVnSjks3Tue7XxnQb_Q4cqw,1538
132
+ odoo/addons/l10n_br_fiscal/tests/test_document_edition.py,sha256=4JsdpTQ0-WFwA72TUejsLQL_vaBgIsW9spbL4mFmw4g,11596
133
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=3e2wA-_I8uhUbbXkqw-Wuvw5VkbMR67mSB95vV3tSKo,39560
134
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=iej1FiolEQTFcUPDl6EsvC8zu4SYqi93dC-3rCos0LE,1491
134
135
  odoo/addons/l10n_br_fiscal/tests/test_fiscal_tax.py,sha256=U6JbuqKTcyyFTiW5FZGqGY5yi_aPKaC6_LWz_3sKdpg,11322
135
136
  odoo/addons/l10n_br_fiscal/tests/test_ibpt.py,sha256=vJKit2Aok-zIk_723nRietLTbVKPstD88vznN2PwMZg,5227
136
137
  odoo/addons/l10n_br_fiscal/tests/test_ibpt_product.py,sha256=h00TpY-tTw3z8U24yTzzvyWkfnKjHqlCbqetBKJNV94,2794
@@ -140,7 +141,7 @@ odoo/addons/l10n_br_fiscal/tests/test_ncm.py,sha256=legCHGki7r8xIC260jKdPpVUNC_Z
140
141
  odoo/addons/l10n_br_fiscal/tests/test_operation.py,sha256=zt3GJh3_z7p4zCFN2VSrUVgCGT7EQJ6GmjMGPIY98cg,480
141
142
  odoo/addons/l10n_br_fiscal/tests/test_partner_profile.py,sha256=aMjOQzygxVMQZnvdAEcR9Wun5igpTBzgOegkjsums68,738
142
143
  odoo/addons/l10n_br_fiscal/tests/test_service_type.py,sha256=xvUuArdzFE05YxEJeZvH0G_mVimVGkp_gwqseX7hMzM,513
143
- odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=qfWnkg03AX42wowtLgwUKw1y3KEKh7DtkCOvGKokrBU,1991
144
+ odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=5jTi5XGbI56MKp3zNXZGAweR0gtijOGTgS8smMYLxVk,1944
144
145
  odoo/addons/l10n_br_fiscal/views/cest_view.xml,sha256=KZ9INPqov5-M5aWng-N7fCWGhB8mxFh-oytS841oTYc,3133
145
146
  odoo/addons/l10n_br_fiscal/views/cfop_view.xml,sha256=zrcDfQnvZyqFE96IXy1b97RVjyBeysL3e9-MXgXRe0s,5016
146
147
  odoo/addons/l10n_br_fiscal/views/city_taxation_code.xml,sha256=TYld1AFFuchxWv9UkyWOuoPzavtc8RmoNRO7SxvidWE,2078
@@ -148,11 +149,11 @@ odoo/addons/l10n_br_fiscal/views/cnae_view.xml,sha256=avskb7zY1LnupaWC5NgjGre2wW
148
149
  odoo/addons/l10n_br_fiscal/views/comment_view.xml,sha256=hz2Rl4hn7YVAgyjakbzm-5wu7umEnDDo2ovW2WjXJVg,2878
149
150
  odoo/addons/l10n_br_fiscal/views/cst_view.xml,sha256=lOnfrD3rxnf7ysToBp0l_t8d7iVTXqF4w7a2sDmT81g,1849
150
151
  odoo/addons/l10n_br_fiscal/views/document_line_mixin_view.xml,sha256=Km956BBIE-c6DPpCmR8bHPxOjuFH-l4Ban1IswncqkA,61632
151
- odoo/addons/l10n_br_fiscal/views/document_line_view.xml,sha256=W1WNRBqGpk_Li5tB0GhAvnXCMRagIbLobuNwAC4ycmY,6539
152
+ odoo/addons/l10n_br_fiscal/views/document_line_view.xml,sha256=rhG-1StekNaIbIEU0vZzzAaZlFlnKabKWLc0tRHCILg,6560
152
153
  odoo/addons/l10n_br_fiscal/views/document_related_view.xml,sha256=QcfUV8wMhHQ0w0Ktw7PfuI4a1zzv4SHhVEMGTc3gnyk,3512
153
154
  odoo/addons/l10n_br_fiscal/views/document_serie_view.xml,sha256=4yQLXuHtSQaAdcB6oUJixF4NcKVrEcISdKKxk8vt-L0,2284
154
155
  odoo/addons/l10n_br_fiscal/views/document_type_view.xml,sha256=m0Tkr2-dDiUEAbcZC3tUUaBRGpqgzwYFyE3jEC8LTNk,1562
155
- odoo/addons/l10n_br_fiscal/views/document_view.xml,sha256=gym0dQPQkIBQDOCqRAfahL9N5D7No7To5QuKYHcAosQ,22827
156
+ odoo/addons/l10n_br_fiscal/views/document_view.xml,sha256=2wgNM-bfFqwdEegLm172oppUj36TDbpCdus18Rdj2zE,22869
156
157
  odoo/addons/l10n_br_fiscal/views/icms_regulation_view.xml,sha256=ia5KaFzJI5casu1mA_dqihiU1LcYdgHWan7l67xCcsE,1637
157
158
  odoo/addons/l10n_br_fiscal/views/icms_relief_view.xml,sha256=L2_RFgK31_0CMcGjwmuGlCD98TY41LP7SR1dlCgvInE,1374
158
159
  odoo/addons/l10n_br_fiscal/views/invalidate_number_view.xml,sha256=gspCSwhXwn5KBTYYeVht9HCzziklVncwb-hcljLoM0o,2558
@@ -191,7 +192,7 @@ odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py,sha256=-r25us0vdNCSe11Gn
191
192
  odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.py,sha256=zP_KFjGy41sDzS6Jag4QtNXOWGaVC0vsARQHBsF3xN8,4114
192
193
  odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.xml,sha256=ZSkG9q2IzsC7mmcJuykRRzEacPOmEnj36zpS8DSomkc,1724
193
194
  odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.py,sha256=KsYj5YWWePO7uk0psBsFdnCL71eLWhcyg7_c7J4G6vA,818
194
- odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info/METADATA,sha256=hY0Z8-EbTkHRZf1Pfme3ABnROwg0j9NdXUdhoWjcoJc,14719
195
- odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
196
- odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
197
- odoo_addon_l10n_br_fiscal-17.0.2.1.0.dist-info/RECORD,,
195
+ odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info/METADATA,sha256=ynSvpJYKOaDy7yuuhrwjyJZS-z9rVsv1nnSUJEblq2E,14721
196
+ odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
197
+ odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
198
+ odoo_addon_l10n_br_fiscal-17.0.3.1.0.1.dist-info/RECORD,,