odoo-addon-l10n-br-fiscal 16.0.1.2.1__py3-none-any.whl → 16.0.1.3.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/icms_regulation.py +8 -1
- odoo/addons/l10n_br_fiscal/models/tax.py +3 -1
- odoo/addons/l10n_br_fiscal/static/description/index.html +1 -1
- odoo/addons/l10n_br_fiscal/views/document_view.xml +1 -1
- {odoo_addon_l10n_br_fiscal-16.0.1.2.1.dist-info → odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info}/METADATA +2 -2
- {odoo_addon_l10n_br_fiscal-16.0.1.2.1.dist-info → odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info}/RECORD +10 -10
- {odoo_addon_l10n_br_fiscal-16.0.1.2.1.dist-info → odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info}/WHEEL +0 -0
- {odoo_addon_l10n_br_fiscal-16.0.1.2.1.dist-info → odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info}/top_level.txt +0 -0
|
@@ -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:
|
|
10
|
+
!! source digest: sha256:77e3d4d4ef9f577fbc017af5628c1d11657e4b2e2228cfa246d2d08b30427134
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
@@ -7,6 +7,7 @@ from odoo import api, fields, models
|
|
|
7
7
|
|
|
8
8
|
from ..constants.fiscal import (
|
|
9
9
|
FINAL_CUSTOMER_YES,
|
|
10
|
+
FISCAL_IN,
|
|
10
11
|
FISCAL_OUT,
|
|
11
12
|
NFE_IND_IE_DEST_9,
|
|
12
13
|
TAX_DOMAIN_ICMS,
|
|
@@ -1778,6 +1779,8 @@ class ICMSRegulation(models.Model):
|
|
|
1778
1779
|
product.icms_origin in ICMS_ORIGIN_TAX_IMPORTED
|
|
1779
1780
|
and company.state_id != partner.state_id
|
|
1780
1781
|
and operation_line.fiscal_operation_type == FISCAL_OUT
|
|
1782
|
+
or operation_line.fiscal_operation_id.fiscal_type == "return_in"
|
|
1783
|
+
and operation_line.fiscal_operation_type == FISCAL_IN
|
|
1781
1784
|
):
|
|
1782
1785
|
icms_taxes |= self.icms_imported_tax_id
|
|
1783
1786
|
else:
|
|
@@ -1831,6 +1834,8 @@ class ICMSRegulation(models.Model):
|
|
|
1831
1834
|
company.state_id != partner.state_id
|
|
1832
1835
|
and partner.ind_ie_dest == NFE_IND_IE_DEST_9
|
|
1833
1836
|
and operation_line.fiscal_operation_type == FISCAL_OUT
|
|
1837
|
+
or operation_line.fiscal_operation_id.fiscal_type == "return_in"
|
|
1838
|
+
and operation_line.fiscal_operation_type == FISCAL_IN
|
|
1834
1839
|
):
|
|
1835
1840
|
domain = self._build_map_tax_def_domain(
|
|
1836
1841
|
partner, partner, tax_group_icms, ncm, nbm, cest
|
|
@@ -1858,8 +1863,10 @@ class ICMSRegulation(models.Model):
|
|
|
1858
1863
|
# ICMS FCP for DIFAL
|
|
1859
1864
|
if (
|
|
1860
1865
|
company.state_id != partner.state_id
|
|
1861
|
-
and operation_line.fiscal_operation_type == FISCAL_OUT
|
|
1862
1866
|
and partner.ind_ie_dest == NFE_IND_IE_DEST_9
|
|
1867
|
+
and operation_line.fiscal_operation_type == FISCAL_OUT
|
|
1868
|
+
or operation_line.fiscal_operation_id.fiscal_type == "return_in"
|
|
1869
|
+
and operation_line.fiscal_operation_type == FISCAL_IN
|
|
1863
1870
|
):
|
|
1864
1871
|
domain = self._build_map_tax_def_domain(
|
|
1865
1872
|
partner, partner, tax_group_icmsfcp, ncm, nbm, cest
|
|
@@ -388,9 +388,11 @@ class Tax(models.Model):
|
|
|
388
388
|
if (
|
|
389
389
|
cfop
|
|
390
390
|
and cfop.destination == CFOP_DESTINATION_EXTERNAL
|
|
391
|
-
and operation_line.fiscal_operation_type == FISCAL_OUT
|
|
392
391
|
and partner.ind_ie_dest == NFE_IND_IE_DEST_9
|
|
393
392
|
and tax_dict.get("tax_value")
|
|
393
|
+
and operation_line.fiscal_operation_type == FISCAL_OUT
|
|
394
|
+
or operation_line.fiscal_operation_id.fiscal_type == "return_in"
|
|
395
|
+
and operation_line.fiscal_operation_type == FISCAL_IN
|
|
394
396
|
):
|
|
395
397
|
icms_tax_difal, _ = company.icms_regulation_id.map_tax_def_icms_difal(
|
|
396
398
|
company, partner, product, ncm, nbm, cest, operation_line, ind_final
|
|
@@ -366,7 +366,7 @@ ul.auto-toc {
|
|
|
366
366
|
!! This file is generated by oca-gen-addon-readme !!
|
|
367
367
|
!! changes will be overwritten. !!
|
|
368
368
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
369
|
-
!! source digest: sha256:
|
|
369
|
+
!! source digest: sha256:77e3d4d4ef9f577fbc017af5628c1d11657e4b2e2228cfa246d2d08b30427134
|
|
370
370
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
371
371
|
<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&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
372
372
|
<img alt="https://raw.githubusercontent.com/OCA/l10n-brazil/16.0/l10n_br_fiscal/static/img/fiscal_dashboard.png" src="https://raw.githubusercontent.com/OCA/l10n-brazil/16.0/l10n_br_fiscal/static/img/fiscal_dashboard.png" />
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
string="Voltar p/ Em Digitação"
|
|
119
119
|
groups="l10n_br_fiscal.group_user"
|
|
120
120
|
class="btn-secondary"
|
|
121
|
-
attrs="{'invisible': ['|', ('state_edoc', 'not in', ('a_enviar', 'rejeitada')), ('document_electronic', '=', False)]}"
|
|
121
|
+
attrs="{'invisible': ['|', ('state_edoc', 'not in', ('a_enviar', 'rejeitada', 'enviada')), ('document_electronic', '=', False)]}"
|
|
122
122
|
/>
|
|
123
123
|
<button
|
|
124
124
|
name="view_pdf"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-l10n-br-fiscal
|
|
3
|
-
Version: 16.0.1.
|
|
3
|
+
Version: 16.0.1.3.0
|
|
4
4
|
Summary: Brazilian fiscal core module.
|
|
5
5
|
Home-page: https://github.com/OCA/l10n-brazil
|
|
6
6
|
Author: Akretion, Odoo Community Association (OCA)
|
|
@@ -26,7 +26,7 @@ Módulo fiscal brasileiro
|
|
|
26
26
|
!! This file is generated by oca-gen-addon-readme !!
|
|
27
27
|
!! changes will be overwritten. !!
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
|
-
!! source digest: sha256:
|
|
29
|
+
!! source digest: sha256:77e3d4d4ef9f577fbc017af5628c1d11657e4b2e2228cfa246d2d08b30427134
|
|
30
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
31
31
|
|
|
32
32
|
.. |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=p56oRSPttNYU9eqPZLw4hZYM-SB020sTMNQOFSF7gsM,13503
|
|
2
2
|
odoo/addons/l10n_br_fiscal/__init__.py,sha256=16Tdff74OkWmnKSfmV6qrNkgsK12gOtMMppwWmIAFIo,144
|
|
3
|
-
odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=6Z7bGaAVLWtrCsIeblCCBF-dd9W60UoIlXScmnqymDY,4114
|
|
4
4
|
odoo/addons/l10n_br_fiscal/hooks.py,sha256=cna_821w1vrwbfQd59YVY66cU9hhY0av2Zwzr5nHDVI,4825
|
|
5
5
|
odoo/addons/l10n_br_fiscal/tools.py,sha256=nh67fxnJjF3Y-yfHl2mJh6TxMkr8r8GKEQ6NJliTAHE,2488
|
|
6
6
|
odoo/addons/l10n_br_fiscal/constants/fiscal.py,sha256=DSLJptPey1rpPYsNFEvnx2ZkZTMp161EFDbaUcmCxzw,14809
|
|
@@ -86,7 +86,7 @@ odoo/addons/l10n_br_fiscal/models/document_serie.py,sha256=Hrb8iikiRXViBk_PVYpyD
|
|
|
86
86
|
odoo/addons/l10n_br_fiscal/models/document_type.py,sha256=TWaOojDCPbf56LGiYHTcXOXXpYXG2maqg-qkzh18a1Y,2126
|
|
87
87
|
odoo/addons/l10n_br_fiscal/models/document_workflow.py,sha256=S_zop-zqDqCGuNivGcjjuEB03_pSgim0-i1hKu01I50,14428
|
|
88
88
|
odoo/addons/l10n_br_fiscal/models/ibpt.py,sha256=MHO6Cu7rmIIWyxB2rt_M0hhrdgoo5FERqlFlHsvKxNg,2357
|
|
89
|
-
odoo/addons/l10n_br_fiscal/models/icms_regulation.py,sha256=
|
|
89
|
+
odoo/addons/l10n_br_fiscal/models/icms_regulation.py,sha256=DxNv_QLx_SVjMbtKL8FBgvJXwjoROEhLI-tJLLNBrGs,64642
|
|
90
90
|
odoo/addons/l10n_br_fiscal/models/icms_relief.py,sha256=apls6lhlGASA93O_lNCterkZKlsl-1ohqNLjpnLLY7c,323
|
|
91
91
|
odoo/addons/l10n_br_fiscal/models/invalidate_number.py,sha256=04t26yWwftJ7aqOCSkLWimyFIweGjhodGKFQts0lvvM,6050
|
|
92
92
|
odoo/addons/l10n_br_fiscal/models/nbm.py,sha256=zHjVAdy0Q9nMCcxWYhihBasDkheMIFZFQyeGM09y-90,1795
|
|
@@ -113,7 +113,7 @@ odoo/addons/l10n_br_fiscal/models/simplified_tax.py,sha256=ayUrykfKDW8em00uidO7I
|
|
|
113
113
|
odoo/addons/l10n_br_fiscal/models/simplified_tax_range.py,sha256=2fhHkkI8uHc22XtWU-23ioQLioaCrJAwaTsr8-eugM4,1839
|
|
114
114
|
odoo/addons/l10n_br_fiscal/models/subsequent_document.py,sha256=C0x-xgFxVLgJ4Sqhv1lL5olZrSwak9u6ij39x_BKIY8,6859
|
|
115
115
|
odoo/addons/l10n_br_fiscal/models/subsequent_operation.py,sha256=KDw5l05YYg_3VELwnTPsg7oLZT1W6pKyNeKr2EFdTbs,1677
|
|
116
|
-
odoo/addons/l10n_br_fiscal/models/tax.py,sha256=
|
|
116
|
+
odoo/addons/l10n_br_fiscal/models/tax.py,sha256=4xbh1moMlpg9QaD0QUUOwtxti1PZPWezcQ226B2OeKE,24213
|
|
117
117
|
odoo/addons/l10n_br_fiscal/models/tax_definition.py,sha256=pFPY0Ydm2XYwA4usnX0JMKFmSMyFaZq9zVICXwYISJg,12005
|
|
118
118
|
odoo/addons/l10n_br_fiscal/models/tax_definition_benefit.py,sha256=L8XEDIMydpa1AbcQVJdgD31sxajffoYH2rk8qGtIbbI,3821
|
|
119
119
|
odoo/addons/l10n_br_fiscal/models/tax_definition_cfop.py,sha256=qOGXBetor0P4ogxy0aojrFH_jgIrX-58A2YsDTqYlYI,1277
|
|
@@ -141,7 +141,7 @@ odoo/addons/l10n_br_fiscal/readme/USAGE.rst,sha256=jDnMjM42hjTlqhbpIzjkhJo59eX4j
|
|
|
141
141
|
odoo/addons/l10n_br_fiscal/security/fiscal_security.xml,sha256=c4D3MoIsVnkZ1pDY_iw8jM2hBPz3VCkl5JKnm_hkau0,3700
|
|
142
142
|
odoo/addons/l10n_br_fiscal/security/ir.model.access.csv,sha256=VvQNMFmeW_GblYM0dbz8wD9aYkgLzXpYcUjDkvoVpqw,15190
|
|
143
143
|
odoo/addons/l10n_br_fiscal/static/description/icon.png,sha256=Vd1HydYBoGCzNfCqxLlch2i2aeCcyxo-uRxWNp6oMbw,14836
|
|
144
|
-
odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=
|
|
144
|
+
odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=u4a9wk0cb2tq8lTN_IqrRX4Jlcaxkz7NfKuudb47q5I,26173
|
|
145
145
|
odoo/addons/l10n_br_fiscal/static/img/fiscal_dashboard.png,sha256=Q0fpqFNqEXh6m6E1aJfzSKV2tQ9lC1Y-ofUt6qxVupc,151668
|
|
146
146
|
odoo/addons/l10n_br_fiscal/static/img/fiscal_line.png,sha256=S4Q4OGSzGnbfm4W5sQVvnD4uUzxS6tbJGT_gs3pB4K0,134276
|
|
147
147
|
odoo/addons/l10n_br_fiscal/static/img/fiscal_operation.png,sha256=2614c1XjxwVznh707e9gujlUXg0ttutKD1ZiSMTqyv8,105871
|
|
@@ -177,7 +177,7 @@ odoo/addons/l10n_br_fiscal/views/document_line_view.xml,sha256=tQimkdGDtTrJg57np
|
|
|
177
177
|
odoo/addons/l10n_br_fiscal/views/document_related_view.xml,sha256=xHVsVE8ijR0dtrUrCwFZZ7tk1TqTLrSKUtkcFyYKB8c,2998
|
|
178
178
|
odoo/addons/l10n_br_fiscal/views/document_serie_view.xml,sha256=VS9tZ4T26pwU3CvjQpyIphL5S1EkJ2iInfKYUBjom4M,2152
|
|
179
179
|
odoo/addons/l10n_br_fiscal/views/document_type_view.xml,sha256=-F58hdaT2HtzERI2VvgW-SnhsVdPRw5arHuskWqcIS0,1873
|
|
180
|
-
odoo/addons/l10n_br_fiscal/views/document_view.xml,sha256=
|
|
180
|
+
odoo/addons/l10n_br_fiscal/views/document_view.xml,sha256=z9mC2yoIownDBh-x9lMhOUtpN3RtVOfYCtooQU57kS0,26998
|
|
181
181
|
odoo/addons/l10n_br_fiscal/views/icms_regulation_view.xml,sha256=ybJtMHXIGINSb-vP490j_qF1kEgc-aDlAnBJex8MNs8,1573
|
|
182
182
|
odoo/addons/l10n_br_fiscal/views/icms_relief_view.xml,sha256=idEZ3ayFBavOOG48f2G1kY0Dx6wLeypDIrqL93CbgCM,1336
|
|
183
183
|
odoo/addons/l10n_br_fiscal/views/invalidate_number_view.xml,sha256=WPDFZpl0-eyw5kTdaGiUkawuIWbVtAeZrcw-SYgudd4,2120
|
|
@@ -224,7 +224,7 @@ odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.py,sha256=_hsF1mQdknc0
|
|
|
224
224
|
odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.xml,sha256=S9hSkgbBKCt78bTe3sRupfnIcmZZ8KWhaZ9q_PKYvgc,2483
|
|
225
225
|
odoo/addons/l10n_br_fiscal/wizards/invalidate_number_wizard.py,sha256=VYw_GXEdqsEW5kV8RJk-vP1X6KW_CafP1nxggdOICNY,1083
|
|
226
226
|
odoo/addons/l10n_br_fiscal/wizards/invalidate_number_wizard.xml,sha256=H0JzzzbJmWziLZjZ8acQsqJcgsaYD3M6I3OydoNFuUc,1215
|
|
227
|
-
odoo_addon_l10n_br_fiscal-16.0.1.
|
|
228
|
-
odoo_addon_l10n_br_fiscal-16.0.1.
|
|
229
|
-
odoo_addon_l10n_br_fiscal-16.0.1.
|
|
230
|
-
odoo_addon_l10n_br_fiscal-16.0.1.
|
|
227
|
+
odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info/METADATA,sha256=LX64f3IQ2NdazVJvJcGJHINeH2EafmFzLlACoEj6QRM,14191
|
|
228
|
+
odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
229
|
+
odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
230
|
+
odoo_addon_l10n_br_fiscal-16.0.1.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|