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

@@ -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:f5cfad5acc7ac998ae922f78d1f4b0377fbcc9a43eccd057cc6f48e930da3b74
10
+ !! source digest: sha256:defd90712a62d4df89722faae6f3685005b2bfa08b7a8375501ab3a1d8172097
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -10,7 +10,7 @@
10
10
  "maintainers": ["renatonlima"],
11
11
  "website": "https://github.com/OCA/l10n-brazil",
12
12
  "development_status": "Production/Stable",
13
- "version": "15.0.2.12.0",
13
+ "version": "15.0.2.13.0",
14
14
  "depends": [
15
15
  "product",
16
16
  "l10n_br_base",
@@ -363,7 +363,9 @@ class FiscalDocumentLineMixinMethods(models.AbstractModel):
363
363
  self.ensure_one()
364
364
  return self.partner_id
365
365
 
366
- @api.onchange("fiscal_operation_id")
366
+ @api.onchange(
367
+ "fiscal_operation_id", "ncm_id", "nbs_id", "cest_id", "service_type_id"
368
+ )
367
369
  def _onchange_fiscal_operation_id(self):
368
370
  if self.fiscal_operation_id:
369
371
  if not self.price_unit:
@@ -755,10 +757,6 @@ class FiscalDocumentLineMixinMethods(models.AbstractModel):
755
757
  if self.ii_customhouse_charges:
756
758
  self._update_fiscal_taxes()
757
759
 
758
- @api.onchange("ncm_id", "nbs_id", "cest_id")
759
- def _onchange_ncm_id(self):
760
- self._onchange_fiscal_operation_id()
761
-
762
760
  @api.onchange("fiscal_tax_ids")
763
761
  def _onchange_fiscal_tax_ids(self):
764
762
  self._update_fiscal_taxes()
@@ -771,11 +769,6 @@ class FiscalDocumentLineMixinMethods(models.AbstractModel):
771
769
  if self.city_taxation_code_id.city_id:
772
770
  self.update({"issqn_fg_city_id": self.city_taxation_code_id.city_id})
773
771
 
774
- @api.onchange("service_type_id")
775
- def _onchange_service_type_id(self):
776
- if self.service_type_id:
777
- self._onchange_fiscal_operation_id()
778
-
779
772
  @api.model
780
773
  def _add_fields_to_amount(self):
781
774
  fields_to_amount = ["insurance_value", "other_value", "freight_value"]
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:f5cfad5acc7ac998ae922f78d1f4b0377fbcc9a43eccd057cc6f48e930da3b74
370
+ !! source digest: sha256:defd90712a62d4df89722faae6f3685005b2bfa08b7a8375501ab3a1d8172097
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
372
  <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/15.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-15-0/l10n-brazil-15-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=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <img alt="https://raw.githubusercontent.com/OCA/l10n-brazil/15.0/l10n_br_fiscal/static/img/fiscal_dashboard.png" src="https://raw.githubusercontent.com/OCA/l10n-brazil/15.0/l10n_br_fiscal/static/img/fiscal_dashboard.png" />
@@ -54,7 +54,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
54
54
  line.price_unit = original_price_unit
55
55
 
56
56
  line._onchange_commercial_quantity()
57
- line._onchange_ncm_id()
58
57
  line._onchange_fiscal_operation_id()
59
58
  line._onchange_fiscal_operation_line_id()
60
59
  line._onchange_fiscal_taxes()
@@ -178,7 +177,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
178
177
  for line in self.nfe_other_state.fiscal_line_ids:
179
178
  line._onchange_product_id_fiscal()
180
179
  line._onchange_commercial_quantity()
181
- line._onchange_ncm_id()
182
180
  line._onchange_fiscal_operation_id()
183
181
  line._onchange_fiscal_operation_line_id()
184
182
  line._onchange_fiscal_taxes()
@@ -300,7 +298,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
300
298
  for line in self.nfe_not_taxpayer.fiscal_line_ids:
301
299
  line._onchange_product_id_fiscal()
302
300
  line._onchange_commercial_quantity()
303
- line._onchange_ncm_id()
304
301
  line._onchange_fiscal_operation_id()
305
302
  line._onchange_fiscal_operation_line_id()
306
303
  line._onchange_fiscal_taxes()
@@ -409,7 +406,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
409
406
  for line in self.nfe_not_taxpayer_pf.fiscal_line_ids:
410
407
  line._onchange_product_id_fiscal()
411
408
  line._onchange_commercial_quantity()
412
- line._onchange_ncm_id()
413
409
  line._onchange_fiscal_operation_id()
414
410
  line._onchange_fiscal_operation_line_id()
415
411
  line._onchange_fiscal_taxes()
@@ -518,7 +514,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
518
514
  for line in self.nfe_export.fiscal_line_ids:
519
515
  line._onchange_product_id_fiscal()
520
516
  line._onchange_commercial_quantity()
521
- line._onchange_ncm_id()
522
517
  line._onchange_fiscal_operation_id()
523
518
  line._onchange_fiscal_operation_line_id()
524
519
  line._onchange_fiscal_taxes()
@@ -633,7 +628,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
633
628
  }
634
629
  )
635
630
 
636
- line._onchange_ncm_id()
637
631
  line._onchange_fiscal_operation_id()
638
632
  line._onchange_fiscal_operation_line_id()
639
633
  line._onchange_fiscal_taxes()
@@ -741,7 +735,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
741
735
  for line in self.nfe_sn_other_state.fiscal_line_ids:
742
736
  line._onchange_product_id_fiscal()
743
737
  line._onchange_commercial_quantity()
744
- line._onchange_ncm_id()
745
738
  line._onchange_fiscal_operation_id()
746
739
  line._onchange_fiscal_operation_line_id()
747
740
  line._onchange_fiscal_taxes()
@@ -846,7 +839,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
846
839
  for line in self.nfe_sn_not_taxpayer.fiscal_line_ids:
847
840
  line._onchange_product_id_fiscal()
848
841
  line._onchange_commercial_quantity()
849
- line._onchange_ncm_id()
850
842
  line._onchange_fiscal_operation_id()
851
843
  line._onchange_fiscal_operation_line_id()
852
844
  line._onchange_fiscal_taxes()
@@ -939,7 +931,6 @@ class TestFiscalDocumentGeneric(TransactionCase):
939
931
  for line in self.nfe_sn_export.fiscal_line_ids:
940
932
  line._onchange_product_id_fiscal()
941
933
  line._onchange_commercial_quantity()
942
- line._onchange_ncm_id()
943
934
  line._onchange_fiscal_operation_id()
944
935
  line._onchange_fiscal_operation_line_id()
945
936
  line._onchange_fiscal_taxes()
@@ -19,7 +19,6 @@ class TestFiscalDocumentNFSe(TransactionCase):
19
19
  for line in self.nfse_same_state.fiscal_line_ids:
20
20
  line._onchange_product_id_fiscal()
21
21
  line._onchange_commercial_quantity()
22
- line._onchange_ncm_id()
23
22
  line._onchange_fiscal_operation_id()
24
23
  line._onchange_fiscal_operation_line_id()
25
24
  line._onchange_fiscal_taxes()
@@ -41,7 +41,6 @@ class TestTaxBenefit(TransactionCase):
41
41
  for line in self.nfe_tax_benefit.fiscal_line_ids:
42
42
  line._onchange_product_id_fiscal()
43
43
  line._onchange_commercial_quantity()
44
- line._onchange_ncm_id()
45
44
  line._onchange_fiscal_operation_id()
46
45
  line._onchange_fiscal_operation_line_id()
47
46
  line._onchange_fiscal_taxes()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_br_fiscal
3
- Version: 15.0.2.12.0
3
+ Version: 15.0.2.13.0
4
4
  Summary: Fiscal module/tax engine for Brazil
5
5
  Home-page: https://github.com/OCA/l10n-brazil
6
6
  Author: Akretion, Odoo Community Association (OCA)
@@ -25,7 +25,7 @@ Módulo fiscal brasileiro
25
25
  !! This file is generated by oca-gen-addon-readme !!
26
26
  !! changes will be overwritten. !!
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
- !! source digest: sha256:f5cfad5acc7ac998ae922f78d1f4b0377fbcc9a43eccd057cc6f48e930da3b74
28
+ !! source digest: sha256:defd90712a62d4df89722faae6f3685005b2bfa08b7a8375501ab3a1d8172097
29
29
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
30
30
 
31
31
  .. |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=_zT0SAR09eVyiHJQoMWphJxPLGIGjBgwhpAVP6xJ-zM,13503
1
+ odoo/addons/l10n_br_fiscal/README.rst,sha256=bQx7f6k-gHfIluul-TkfhDiv7RT3_ZK9D7zPyvssFvM,13503
2
2
  odoo/addons/l10n_br_fiscal/__init__.py,sha256=16Tdff74OkWmnKSfmV6qrNkgsK12gOtMMppwWmIAFIo,144
3
- odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=OHpwe9hyBhvTo87T5p6MezCWeqotBX8WdCYwOp0fJxI,3714
3
+ odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=bfe6jTjpRcNElmD_QjapgDUw6A7uhbMH_auWGafPDWg,3714
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=F2a4jYAk2j2Yh1Xw7WeS1GcLfW1DbjeNgEF6l7135wc,14962
@@ -75,7 +75,7 @@ odoo/addons/l10n_br_fiscal/models/document.py,sha256=ytO21XFhuz4KLrrCO7pgLrfvQ9G
75
75
  odoo/addons/l10n_br_fiscal/models/document_email.py,sha256=ikGhCrTI18X01RszlCqO0tvhTOKr2d5KJLcj_QA1o_Y,2113
76
76
  odoo/addons/l10n_br_fiscal/models/document_line.py,sha256=mIEn3AeqDd2pf-0YjbGRu6s6U-XcU1g-Nroh6eGugco,1486
77
77
  odoo/addons/l10n_br_fiscal/models/document_line_mixin.py,sha256=wwF_oaQLGZygGKaAmPVyAXZ9ADBpSWv6T7Spi2ucyto,26539
78
- odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=qstdFcnlJoj_Gf5-Mm4jyWhnPYSq1QSCiwc7KMYRhak,30768
78
+ odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py,sha256=s29iDc6b3V__dJVXlojdvmiZh5khH8fuFRWmOH_6M2Y,30544
79
79
  odoo/addons/l10n_br_fiscal/models/document_mixin.py,sha256=1Ep0ClxXpMTB_mzikF_3gdA3Nk6N2YxMR8yDq_QoOAg,282
80
80
  odoo/addons/l10n_br_fiscal/models/document_mixin_fields.py,sha256=z2Ta5u82i6ySyvcw8W2hvR53B_UZXMm3x0T5PuTGtp4,11520
81
81
  odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py,sha256=C9zlKR3W2ZCjx9vsoWzmNTQJFMdi5vilJWtcoDnt068,11899
@@ -131,15 +131,15 @@ odoo/addons/l10n_br_fiscal/readme/USAGE.rst,sha256=jDnMjM42hjTlqhbpIzjkhJo59eX4j
131
131
  odoo/addons/l10n_br_fiscal/security/fiscal_security.xml,sha256=c4D3MoIsVnkZ1pDY_iw8jM2hBPz3VCkl5JKnm_hkau0,3700
132
132
  odoo/addons/l10n_br_fiscal/security/ir.model.access.csv,sha256=3E9q6uzshDOKbm2zUV8cv2x1EIV3WkAkqjaq4_sOUtM,14918
133
133
  odoo/addons/l10n_br_fiscal/static/description/icon.png,sha256=Vd1HydYBoGCzNfCqxLlch2i2aeCcyxo-uRxWNp6oMbw,14836
134
- odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=qAzP6m-w-PJSvfmuWtFj0omgKbIL69O2pjICBgVCtZY,26256
134
+ odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=X5fGa-S8SjMfLYO9zdhQndi1K_EliYbGcu2cdSpM80k,26256
135
135
  odoo/addons/l10n_br_fiscal/static/img/fiscal_dashboard.png,sha256=Q0fpqFNqEXh6m6E1aJfzSKV2tQ9lC1Y-ofUt6qxVupc,151668
136
136
  odoo/addons/l10n_br_fiscal/static/img/fiscal_line.png,sha256=S4Q4OGSzGnbfm4W5sQVvnD4uUzxS6tbJGT_gs3pB4K0,134276
137
137
  odoo/addons/l10n_br_fiscal/static/img/fiscal_operation.png,sha256=2614c1XjxwVznh707e9gujlUXg0ttutKD1ZiSMTqyv8,105871
138
138
  odoo/addons/l10n_br_fiscal/static/img/fiscal_total.png,sha256=MaR6ZoM6ZZEaNZk2ynSmaHjkRUU0SOkeUW5_HbJQS50,132739
139
139
  odoo/addons/l10n_br_fiscal/tests/__init__.py,sha256=uIjGqBHKvBQlMhq9BAfmNKVarzWtTKDdr_e3STjI0DU,415
140
140
  odoo/addons/l10n_br_fiscal/tests/test_cnae.py,sha256=mmskSfWaoFSohjmRbnGci_6Euc9fc2zbhyH5FdyeIeA,616
141
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=fcU7iqcyn38yMGzvsDy0RUqwL67IHIEM1sc0_v7OPH4,42660
142
- odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=-fggELBcd0pgMxoAbWOWRZq8ct6-y5bIpwBK9ZE38yo,1695
141
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py,sha256=yN-h1vlcvXohH4gGMM4G94fZzzYveNNWoinIWjt92_s,42336
142
+ odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py,sha256=VqFRACW6evtW_Sw_AnXnRCewEF7eM2IdA10oNxA-Gok,1659
143
143
  odoo/addons/l10n_br_fiscal/tests/test_fiscal_tax.py,sha256=U6JbuqKTcyyFTiW5FZGqGY5yi_aPKaC6_LWz_3sKdpg,11322
144
144
  odoo/addons/l10n_br_fiscal/tests/test_ibpt.py,sha256=db7F_WNefarpIjODC94Tya_XCAdaUfK3VPY2v8ihoYw,5226
145
145
  odoo/addons/l10n_br_fiscal/tests/test_ibpt_product.py,sha256=h00TpY-tTw3z8U24yTzzvyWkfnKjHqlCbqetBKJNV94,2794
@@ -150,7 +150,7 @@ odoo/addons/l10n_br_fiscal/tests/test_operation.py,sha256=zt3GJh3_z7p4zCFN2VSrUV
150
150
  odoo/addons/l10n_br_fiscal/tests/test_partner_profile.py,sha256=aMjOQzygxVMQZnvdAEcR9Wun5igpTBzgOegkjsums68,738
151
151
  odoo/addons/l10n_br_fiscal/tests/test_service_type.py,sha256=k9Ro0pGVsiHslAa1NcLK-FlNnrFEeh394aw2tOF_M5o,556
152
152
  odoo/addons/l10n_br_fiscal/tests/test_subsequent_operation.py,sha256=k3MGjJlftN4j_L372OdvKo7FTQL0eiCzoKazLBAnDrA,2629
153
- odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=AEwJCFwdsuh1bCTrcwFqrGeLqUWyt-pKLsOmalv5nR8,2163
153
+ odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py,sha256=xwuJO0omFPNXLH9dhtH-36H1tqOnd68Ka4DTPxhaPl4,2127
154
154
  odoo/addons/l10n_br_fiscal/tests/test_uom_uom.py,sha256=yv9sUrP8lMCyx5CbJR-fPGlomtUBXMSMBnVExR1dS1E,718
155
155
  odoo/addons/l10n_br_fiscal/views/cest_view.xml,sha256=buiOX9AZ4OMHyjHZfoazcQQzjBSE7fT1S0LlYmo_3P4,3162
156
156
  odoo/addons/l10n_br_fiscal/views/cfop_view.xml,sha256=7Lx2RN0fYkjOJodT1Bthxyu4JiPvCP3NXSWBlEy-tGM,3732
@@ -202,7 +202,7 @@ odoo/addons/l10n_br_fiscal/views/uom_uom.xml,sha256=pqq2l0Vd8nz3oJBoe2GERQFMB3I5
202
202
  odoo/addons/l10n_br_fiscal/wizards/__init__.py,sha256=_sLxjpuJblbtSngjCsnMm7Iur5afF5xLEkAQLu4sy7I,69
203
203
  odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py,sha256=-r25us0vdNCSe11Gnf_tyPtN1qq-JKsL-fgWbPGktRo,2856
204
204
  odoo/addons/l10n_br_fiscal/wizards/document_status_wizard.py,sha256=KsYj5YWWePO7uk0psBsFdnCL71eLWhcyg7_c7J4G6vA,818
205
- odoo_addon_l10n_br_fiscal-15.0.2.12.0.dist-info/METADATA,sha256=9DGBqEjCsSYzYnbrmSlSNYt-K0coOjfhaLSn7m0M3Uo,14174
206
- odoo_addon_l10n_br_fiscal-15.0.2.12.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
207
- odoo_addon_l10n_br_fiscal-15.0.2.12.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
208
- odoo_addon_l10n_br_fiscal-15.0.2.12.0.dist-info/RECORD,,
205
+ odoo_addon_l10n_br_fiscal-15.0.2.13.0.dist-info/METADATA,sha256=rgEj3Ld_h675gbh0hSo7Z7AL92Oo3xVrEonD05TeOFE,14174
206
+ odoo_addon_l10n_br_fiscal-15.0.2.13.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
207
+ odoo_addon_l10n_br_fiscal-15.0.2.13.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
208
+ odoo_addon_l10n_br_fiscal-15.0.2.13.0.dist-info/RECORD,,