odoo-addon-l10n-br-fiscal 16.0.11.3.0__py3-none-any.whl → 16.0.11.4.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.
- odoo/addons/l10n_br_fiscal/README.rst +1 -1
- odoo/addons/l10n_br_fiscal/__manifest__.py +1 -1
- odoo/addons/l10n_br_fiscal/models/document.py +0 -12
- odoo/addons/l10n_br_fiscal/models/document_mixin.py +4 -2
- odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py +5 -7
- odoo/addons/l10n_br_fiscal/static/description/index.html +1 -1
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py +0 -27
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py +0 -2
- odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py +0 -2
- {odoo_addon_l10n_br_fiscal-16.0.11.3.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info}/METADATA +2 -2
- {odoo_addon_l10n_br_fiscal-16.0.11.3.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info}/RECORD +13 -13
- {odoo_addon_l10n_br_fiscal-16.0.11.3.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info}/WHEEL +0 -0
- {odoo_addon_l10n_br_fiscal-16.0.11.3.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info}/top_level.txt +0 -0
|
@@ -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:
|
|
14
|
+
!! source digest: sha256:ce2fe73bc4b18012db2681285ba57997dbab06aa32943eeeea86fb6cc5a224ee
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
@@ -596,7 +596,6 @@ class Document(models.Model):
|
|
|
596
596
|
|
|
597
597
|
new_doc = record.copy()
|
|
598
598
|
new_doc.fiscal_operation_id = fsc_op
|
|
599
|
-
new_doc._onchange_fiscal_operation_id()
|
|
600
599
|
|
|
601
600
|
for line in new_doc.fiscal_line_ids:
|
|
602
601
|
fsc_op_line = line.fiscal_operation_id.return_fiscal_operation_id
|
|
@@ -658,14 +657,3 @@ class Document(models.Model):
|
|
|
658
657
|
def _compute_edoc_purpose(self):
|
|
659
658
|
for record in self:
|
|
660
659
|
record.edoc_purpose = record.fiscal_operation_id.edoc_purpose
|
|
661
|
-
|
|
662
|
-
@api.onchange("fiscal_operation_id")
|
|
663
|
-
def _onchange_fiscal_operation_id(self):
|
|
664
|
-
result = super()._onchange_fiscal_operation_id()
|
|
665
|
-
if self.fiscal_operation_id:
|
|
666
|
-
self.fiscal_operation_type = self.fiscal_operation_id.fiscal_operation_type
|
|
667
|
-
|
|
668
|
-
if self.issuer == DOCUMENT_ISSUER_COMPANY and not self.document_type_id:
|
|
669
|
-
self.document_type_id = self.company_id.document_type_id
|
|
670
|
-
|
|
671
|
-
return result
|
|
@@ -33,7 +33,6 @@ class FiscalDocumentMixin(models.AbstractModel):
|
|
|
33
33
|
- Inverse methods for distributing header-level costs (freight, insurance)
|
|
34
34
|
to lines.
|
|
35
35
|
- Hooks for customizing data retrieval (e.g., lines, fiscal partner).
|
|
36
|
-
- Onchange helpers for common fiscal fields.
|
|
37
36
|
|
|
38
37
|
Models using this mixin are often expected to also include fields defined
|
|
39
38
|
in `l10n_br_fiscal.document.mixin` for methods like
|
|
@@ -90,7 +89,6 @@ class FiscalDocumentMixin(models.AbstractModel):
|
|
|
90
89
|
|
|
91
90
|
fiscal_operation_type = fields.Selection(
|
|
92
91
|
related="fiscal_operation_id.fiscal_operation_type",
|
|
93
|
-
readonly=True,
|
|
94
92
|
)
|
|
95
93
|
|
|
96
94
|
ind_pres = fields.Selection(
|
|
@@ -481,6 +479,10 @@ class FiscalDocumentMixin(models.AbstractModel):
|
|
|
481
479
|
|
|
482
480
|
document_type_id = fields.Many2one(
|
|
483
481
|
comodel_name="l10n_br_fiscal.document.type",
|
|
482
|
+
compute="_compute_document_type_id",
|
|
483
|
+
store=True,
|
|
484
|
+
precompute=True,
|
|
485
|
+
readonly=False,
|
|
484
486
|
)
|
|
485
487
|
|
|
486
488
|
document_serie_id = fields.Many2one(
|
|
@@ -57,13 +57,11 @@ class FiscalDocumentMixinMethods(models.AbstractModel):
|
|
|
57
57
|
self.company_id, self.fiscal_operation_id
|
|
58
58
|
)
|
|
59
59
|
|
|
60
|
-
@api.
|
|
61
|
-
def
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
if self.issuer == DOCUMENT_ISSUER_COMPANY and not self.document_type_id:
|
|
66
|
-
self.document_type_id = self.company_id.document_type_id
|
|
60
|
+
@api.depends("fiscal_operation_id")
|
|
61
|
+
def _compute_document_type_id(self):
|
|
62
|
+
for doc in self.filtered(lambda doc: doc.fiscal_operation_id):
|
|
63
|
+
if doc.issuer == DOCUMENT_ISSUER_COMPANY and not doc.document_type_id:
|
|
64
|
+
doc.document_type_id = doc.company_id.document_type_id
|
|
67
65
|
|
|
68
66
|
def _get_amount_lines(self):
|
|
69
67
|
"""Get object lines instances used to compute fiscal fields"""
|
|
@@ -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:
|
|
375
|
+
!! source digest: sha256:ce2fe73bc4b18012db2681285ba57997dbab06aa32943eeeea86fb6cc5a224ee
|
|
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&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>
|
|
@@ -39,9 +39,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
39
39
|
|
|
40
40
|
def test_nfe_same_state(self):
|
|
41
41
|
"""Test NFe same state."""
|
|
42
|
-
|
|
43
|
-
self.nfe_same_state._onchange_fiscal_operation_id()
|
|
44
|
-
|
|
45
42
|
for line in self.nfe_same_state.fiscal_line_ids:
|
|
46
43
|
line._onchange_product_id_fiscal()
|
|
47
44
|
|
|
@@ -164,9 +161,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
164
161
|
|
|
165
162
|
def test_nfe_other_state(self):
|
|
166
163
|
"""Test NFe other state."""
|
|
167
|
-
|
|
168
|
-
self.nfe_other_state._onchange_fiscal_operation_id()
|
|
169
|
-
|
|
170
164
|
for line in self.nfe_other_state.fiscal_line_ids:
|
|
171
165
|
line._onchange_product_id_fiscal()
|
|
172
166
|
line._onchange_fiscal_operation_id()
|
|
@@ -282,9 +276,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
282
276
|
|
|
283
277
|
def test_nfe_not_taxpayer(self):
|
|
284
278
|
"""Test NFe not taxpayer."""
|
|
285
|
-
|
|
286
|
-
self.nfe_not_taxpayer._onchange_fiscal_operation_id()
|
|
287
|
-
|
|
288
279
|
for line in self.nfe_not_taxpayer.fiscal_line_ids:
|
|
289
280
|
line._onchange_product_id_fiscal()
|
|
290
281
|
line._onchange_fiscal_operation_id()
|
|
@@ -387,9 +378,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
387
378
|
|
|
388
379
|
def test_nfe_not_taxpayer_not_company(self):
|
|
389
380
|
"""Test NFe not taxpayer not Company."""
|
|
390
|
-
|
|
391
|
-
self.nfe_not_taxpayer_pf._onchange_fiscal_operation_id()
|
|
392
|
-
|
|
393
381
|
for line in self.nfe_not_taxpayer_pf.fiscal_line_ids:
|
|
394
382
|
line._onchange_product_id_fiscal()
|
|
395
383
|
line._onchange_fiscal_operation_id()
|
|
@@ -492,9 +480,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
492
480
|
|
|
493
481
|
def test_nfe_export(self):
|
|
494
482
|
"""Test NFe export."""
|
|
495
|
-
|
|
496
|
-
self.nfe_export._onchange_fiscal_operation_id()
|
|
497
|
-
|
|
498
483
|
for line in self.nfe_export.fiscal_line_ids:
|
|
499
484
|
line._onchange_product_id_fiscal()
|
|
500
485
|
line._onchange_fiscal_operation_id()
|
|
@@ -589,9 +574,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
589
574
|
|
|
590
575
|
def test_nfe_sn_same_state(self):
|
|
591
576
|
"""Test NFe Simples Nacional same state."""
|
|
592
|
-
|
|
593
|
-
self.nfe_sn_same_state._onchange_fiscal_operation_id()
|
|
594
|
-
|
|
595
577
|
for line in self.nfe_sn_same_state.fiscal_line_ids:
|
|
596
578
|
line._onchange_product_id_fiscal()
|
|
597
579
|
|
|
@@ -705,9 +687,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
705
687
|
|
|
706
688
|
def test_nfe_sn_other_state(self):
|
|
707
689
|
"""Test NFe SN other state."""
|
|
708
|
-
|
|
709
|
-
self.nfe_sn_other_state._onchange_fiscal_operation_id()
|
|
710
|
-
|
|
711
690
|
for line in self.nfe_sn_other_state.fiscal_line_ids:
|
|
712
691
|
line._onchange_product_id_fiscal()
|
|
713
692
|
line._onchange_fiscal_operation_id()
|
|
@@ -806,9 +785,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
806
785
|
|
|
807
786
|
def test_nfe_sn_not_taxpayer(self):
|
|
808
787
|
"""Test NFe SN not taxpayer."""
|
|
809
|
-
|
|
810
|
-
self.nfe_sn_not_taxpayer._onchange_fiscal_operation_id()
|
|
811
|
-
|
|
812
788
|
for line in self.nfe_sn_not_taxpayer.fiscal_line_ids:
|
|
813
789
|
line._onchange_product_id_fiscal()
|
|
814
790
|
line._onchange_fiscal_operation_id()
|
|
@@ -894,9 +870,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
|
|
|
894
870
|
|
|
895
871
|
def test_nfe_sn_export(self):
|
|
896
872
|
"""Test NFe SN export."""
|
|
897
|
-
|
|
898
|
-
self.nfe_sn_export._onchange_fiscal_operation_id()
|
|
899
|
-
|
|
900
873
|
for line in self.nfe_sn_export.fiscal_line_ids:
|
|
901
874
|
line._onchange_product_id_fiscal()
|
|
902
875
|
line._onchange_fiscal_operation_id()
|
|
@@ -14,8 +14,6 @@ class TestFiscalDocumentNFSe(TransactionCase):
|
|
|
14
14
|
def test_nfse_same_state(self):
|
|
15
15
|
"""Test NFSe same state."""
|
|
16
16
|
|
|
17
|
-
self.nfse_same_state._onchange_fiscal_operation_id()
|
|
18
|
-
|
|
19
17
|
for line in self.nfse_same_state.fiscal_line_ids:
|
|
20
18
|
line._onchange_product_id_fiscal()
|
|
21
19
|
line._onchange_fiscal_operation_id()
|
|
@@ -39,8 +39,6 @@ class TestTaxBenefit(TransactionCase):
|
|
|
39
39
|
def test_nfe_tax_benefit(self):
|
|
40
40
|
"""Test NFe with tax benefit."""
|
|
41
41
|
|
|
42
|
-
self.nfe_tax_benefit._onchange_fiscal_operation_id()
|
|
43
|
-
|
|
44
42
|
for line in self.nfe_tax_benefit.fiscal_line_ids:
|
|
45
43
|
line._onchange_product_id_fiscal()
|
|
46
44
|
line._onchange_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.11.
|
|
3
|
+
Version: 16.0.11.4.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
|
|
@@ -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:
|
|
34
|
+
!! source digest: sha256:ce2fe73bc4b18012db2681285ba57997dbab06aa32943eeeea86fb6cc5a224ee
|
|
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=
|
|
1
|
+
odoo/addons/l10n_br_fiscal/README.rst,sha256=v4mCorit6vKAdVxgWAIc8o3IN9tM4BxjP0VbgILwj_c,13957
|
|
2
2
|
odoo/addons/l10n_br_fiscal/__init__.py,sha256=BQXfCjW4ehK1W1j0z6k8xN7Q2LoZBCjjvYDkQt6nSkI,2717
|
|
3
|
-
odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=TthxHlVa4TJ_EvUWkSLKMpImWAzLJUvv7Ss7g3lGi8Y,4964
|
|
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
|
|
72
|
+
odoo/addons/l10n_br_fiscal/models/document.py,sha256=-0nT613qIHOz2sNPAhgrNM8pcVuw7_Sw7hSOF-nj6QY,19328
|
|
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=1rY8wJ-pTwZeg4kJhDO4E_MNU22ARb_DkIpw6Rk6Tpw,28250
|
|
75
75
|
odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=FQpYqFC5ywdLul471RlyzUZGkKv5ENdSVsEu31wvx7A,32665
|
|
76
|
-
odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=
|
|
77
|
-
odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=
|
|
76
|
+
odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=hCi-HEIeOHVqk1CF1irIfOrqztRoHGxvmHaPA14-yCI,13519
|
|
77
|
+
odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=jM_lJZC7Nipa6N9GSoUIHKVrS6JmhtxKzmeB7QYqpC4,16326
|
|
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=RIVYOOLQ2cOWGp9f8hvKflwglZxAN6exGcOwqCEgDuw,14369
|
|
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=
|
|
127
|
+
odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=y6wCKT2ZxZxw9nVET7_rM75LlKXM4Hsc2uDi7ULZ4Z8,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
|
|
@@ -133,8 +133,8 @@ odoo/addons/l10n_br_fiscal/static/src/js/list_renderer_with_button.esm.js,sha256
|
|
|
133
133
|
odoo/addons/l10n_br_fiscal/tests/__init__.py,sha256=83m4BimGb-6EseEmmCVaKTSel5GB_vkzbI3YZi4mStE,393
|
|
134
134
|
odoo/addons/l10n_br_fiscal/tests/test_cnae.py,sha256=mmskSfWaoFSohjmRbnGci_6Euc9fc2zbhyH5FdyeIeA,616
|
|
135
135
|
odoo/addons/l10n_br_fiscal/tests/test_document_edition.py,sha256=w_ANtriwn9IpG3XvMruINMOIcZJyPwUY47iFSgz2bj0,5067
|
|
136
|
-
odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=
|
|
137
|
-
odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=
|
|
136
|
+
odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=nMrevgtmcMgtnZWt-nHZboKLiFO1V_AxfSxIWKd0uLw,39974
|
|
137
|
+
odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=nEMaaWfv-sb4o48c1-l7mVnSjks3Tue7XxnQb_Q4cqw,1538
|
|
138
138
|
odoo/addons/l10n_br_fiscal/tests/test_fiscal_tax.py,sha256=U6JbuqKTcyyFTiW5FZGqGY5yi_aPKaC6_LWz_3sKdpg,11322
|
|
139
139
|
odoo/addons/l10n_br_fiscal/tests/test_ibpt.py,sha256=vJKit2Aok-zIk_723nRietLTbVKPstD88vznN2PwMZg,5227
|
|
140
140
|
odoo/addons/l10n_br_fiscal/tests/test_ibpt_product.py,sha256=h00TpY-tTw3z8U24yTzzvyWkfnKjHqlCbqetBKJNV94,2794
|
|
@@ -144,7 +144,7 @@ odoo/addons/l10n_br_fiscal/tests/test_ncm.py,sha256=legCHGki7r8xIC260jKdPpVUNC_Z
|
|
|
144
144
|
odoo/addons/l10n_br_fiscal/tests/test_operation.py,sha256=zt3GJh3_z7p4zCFN2VSrUVgCGT7EQJ6GmjMGPIY98cg,480
|
|
145
145
|
odoo/addons/l10n_br_fiscal/tests/test_partner_profile.py,sha256=aMjOQzygxVMQZnvdAEcR9Wun5igpTBzgOegkjsums68,738
|
|
146
146
|
odoo/addons/l10n_br_fiscal/tests/test_service_type.py,sha256=k9Ro0pGVsiHslAa1NcLK-FlNnrFEeh394aw2tOF_M5o,556
|
|
147
|
-
odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=
|
|
147
|
+
odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=qfWnkg03AX42wowtLgwUKw1y3KEKh7DtkCOvGKokrBU,1991
|
|
148
148
|
odoo/addons/l10n_br_fiscal/views/cest_view.xml,sha256=buiOX9AZ4OMHyjHZfoazcQQzjBSE7fT1S0LlYmo_3P4,3162
|
|
149
149
|
odoo/addons/l10n_br_fiscal/views/cfop_view.xml,sha256=eSAo01pTaF2AY5_NfWJqY5H3WnaFmzfaSJ6l0DkyEcY,5018
|
|
150
150
|
odoo/addons/l10n_br_fiscal/views/city_taxation_code.xml,sha256=SnoB8FmZdCzJhqKrEAXG3VVZDBIlDBpIq3oKycbx6uQ,2104
|
|
@@ -195,7 +195,7 @@ odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py,sha256=-r25us0vdNCSe11Gn
|
|
|
195
195
|
odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.py,sha256=KfbqnzFuVx7WAro__W130rgvMWKkDBvkDFglMwTwgBQ,4115
|
|
196
196
|
odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.xml,sha256=h19vP1YvC4hLPvCvA6E1goqre0AAGy0CF4a2R6B78Y4,1833
|
|
197
197
|
odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.py,sha256=KsYj5YWWePO7uk0psBsFdnCL71eLWhcyg7_c7J4G6vA,818
|
|
198
|
-
odoo_addon_l10n_br_fiscal-16.0.11.
|
|
199
|
-
odoo_addon_l10n_br_fiscal-16.0.11.
|
|
200
|
-
odoo_addon_l10n_br_fiscal-16.0.11.
|
|
201
|
-
odoo_addon_l10n_br_fiscal-16.0.11.
|
|
198
|
+
odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info/METADATA,sha256=0WvTCUdYAzTyoUNWC3I1Y1AtEO5D8lVmf6uoRSCPx9w,14720
|
|
199
|
+
odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
200
|
+
odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
201
|
+
odoo_addon_l10n_br_fiscal-16.0.11.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|