odoo-addon-l10n-br-fiscal 16.0.11.1.0__py3-none-any.whl → 16.0.11.1.2__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/i18n/l10n_br_fiscal.pot +1 -1
- odoo/addons/l10n_br_fiscal/models/document.py +16 -4
- odoo/addons/l10n_br_fiscal/static/description/index.html +1 -1
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py +0 -9
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py +0 -1
- odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py +0 -1
- {odoo_addon_l10n_br_fiscal-16.0.11.1.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info}/METADATA +2 -2
- {odoo_addon_l10n_br_fiscal-16.0.11.1.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info}/RECORD +12 -12
- {odoo_addon_l10n_br_fiscal-16.0.11.1.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info}/WHEEL +1 -1
- {odoo_addon_l10n_br_fiscal-16.0.11.1.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.11.1.2.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:b1129944caae6ff852f9df8531c2b625377be6941c01e2b14c1759e90495f33a
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
@@ -2991,6 +2991,7 @@ msgstr ""
|
|
|
2991
2991
|
|
|
2992
2992
|
#. module: l10n_br_fiscal
|
|
2993
2993
|
#: model:ir.model,name:l10n_br_fiscal.model_l10n_br_fiscal_operation
|
|
2994
|
+
#: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_document__fiscal_operation_id
|
|
2994
2995
|
#: model_terms:ir.ui.view,arch_db:l10n_br_fiscal.operation_form
|
|
2995
2996
|
#: model_terms:ir.ui.view,arch_db:l10n_br_fiscal.operation_search
|
|
2996
2997
|
msgid "Fiscal Operation"
|
|
@@ -6099,7 +6100,6 @@ msgstr ""
|
|
|
6099
6100
|
|
|
6100
6101
|
#. module: l10n_br_fiscal
|
|
6101
6102
|
#: model:ir.actions.act_window,name:l10n_br_fiscal.operation_action
|
|
6102
|
-
#: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_document__fiscal_operation_id
|
|
6103
6103
|
#: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_document_line__fiscal_operation_id
|
|
6104
6104
|
#: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_document_line_mixin__fiscal_operation_id
|
|
6105
6105
|
#: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_document_mixin__fiscal_operation_id
|
|
@@ -91,9 +91,9 @@ class Document(models.Model):
|
|
|
91
91
|
)
|
|
92
92
|
|
|
93
93
|
fiscal_operation_id = fields.Many2one(
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
"
|
|
94
|
+
"l10n_br_fiscal.operation",
|
|
95
|
+
string="Fiscal Operation",
|
|
96
|
+
domain="[('state', '=', 'approved')]",
|
|
97
97
|
)
|
|
98
98
|
|
|
99
99
|
fiscal_operation_type = fields.Selection(
|
|
@@ -486,6 +486,19 @@ class Document(models.Model):
|
|
|
486
486
|
)
|
|
487
487
|
)
|
|
488
488
|
|
|
489
|
+
@api.onchange("fiscal_operation_type")
|
|
490
|
+
def _onchange_fiscal_operation_type(self):
|
|
491
|
+
domain = [("state", "=", "approved")]
|
|
492
|
+
if self.fiscal_operation_type:
|
|
493
|
+
domain.append(("fiscal_operation_type", "=", self.fiscal_operation_type))
|
|
494
|
+
if (
|
|
495
|
+
self.fiscal_operation_id
|
|
496
|
+
and self.fiscal_operation_id.fiscal_operation_type
|
|
497
|
+
!= self.fiscal_operation_type
|
|
498
|
+
):
|
|
499
|
+
self.fiscal_operation_id = False
|
|
500
|
+
return {"domain": {"fiscal_operation_id": domain}}
|
|
501
|
+
|
|
489
502
|
@api.depends("company_id")
|
|
490
503
|
def _compute_currency_id(self):
|
|
491
504
|
for doc in self:
|
|
@@ -596,7 +609,6 @@ class Document(models.Model):
|
|
|
596
609
|
)
|
|
597
610
|
line.fiscal_operation_id = fsc_op_line
|
|
598
611
|
line._onchange_fiscal_operation_id()
|
|
599
|
-
line._onchange_fiscal_operation_line_id()
|
|
600
612
|
|
|
601
613
|
return_docs |= new_doc
|
|
602
614
|
return return_docs
|
|
@@ -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:b1129944caae6ff852f9df8531c2b625377be6941c01e2b14c1759e90495f33a
|
|
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>
|
|
@@ -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(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-l10n_br_fiscal
|
|
3
|
-
Version: 16.0.11.1.
|
|
3
|
+
Version: 16.0.11.1.2
|
|
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:b1129944caae6ff852f9df8531c2b625377be6941c01e2b14c1759e90495f33a
|
|
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=yLeRknXdZnVWNdkJL6fJ88vzzEbV0HcYpP5NyTFm7Ao,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=mCu4alQRG4KfmT6Tjaj7Ls0sNjpTUQrEHT15PSvyoiE,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
|
|
@@ -52,7 +52,7 @@ odoo/addons/l10n_br_fiscal/demo/icms_tax_definition_demo.xml,sha256=38sImUwueccE
|
|
|
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=
|
|
55
|
+
odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot,sha256=uNIA6RK2Ofsh0n85t7_zizUP9BBp8YVOEhpfMeHOYag,418651
|
|
56
56
|
odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=r18-H9zeX1TEwux85-Jt5CuF_l6dLpj8Ix9kPW-tjbs,496209
|
|
57
57
|
odoo/addons/l10n_br_fiscal/migrations/16.0.2.0.0/pre-migration.py,sha256=tw6d7NZrbOmjEaGHI9y-AMiNWNqf_mceTFqTFXuc6cU,687
|
|
58
58
|
odoo/addons/l10n_br_fiscal/migrations/16.0.2.15.0/pre-migration.py,sha256=5-aWMxFdyNbyw_MJbfyiSFHnm9zxWKYHibOW5GNauWc,517
|
|
@@ -69,7 +69,7 @@ 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=4_a07OhC1k5NDluUou1c0-Np-BGm2wwC0XTeEvqg0Ko,19823
|
|
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
|
|
@@ -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=
|
|
127
|
+
odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=4WGi1gRLQ8rcXBdzzJlwatvo0jlAp5kEYomf0Bp4ZJk,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=
|
|
136
|
-
odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256
|
|
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=
|
|
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.1.
|
|
196
|
-
odoo_addon_l10n_br_fiscal-16.0.11.1.
|
|
197
|
-
odoo_addon_l10n_br_fiscal-16.0.11.1.
|
|
198
|
-
odoo_addon_l10n_br_fiscal-16.0.11.1.
|
|
195
|
+
odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info/METADATA,sha256=_cAyYtJbcVnJTBsUY4WOxIFBAZ7oFAYmqzztBfVIC4Y,14720
|
|
196
|
+
odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
197
|
+
odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
198
|
+
odoo_addon_l10n_br_fiscal-16.0.11.1.2.dist-info/RECORD,,
|
|
File without changes
|