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

@@ -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:d5cadf6ed3f37ee3f29b6b3b2494d1c7092ab46ca4940dec7a7e1062cac19d5a
10
+ !! source digest: sha256:8ccfa61234f5231081f7421550321ed5a7eb118d239fc6c37cde2a24a8a8aadc
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.1.6.0",
13
+ "version": "15.0.1.6.1",
14
14
  "depends": [
15
15
  "product",
16
16
  "l10n_br_base",
@@ -8084,6 +8084,11 @@ msgstr ""
8084
8084
  msgid "Stock Moves?"
8085
8085
  msgstr ""
8086
8086
 
8087
+ #. module: l10n_br_fiscal
8088
+ #: model:ir.model.fields.selection,name:l10n_br_fiscal.selection__product_template__type__product
8089
+ msgid "Storable Product"
8090
+ msgstr ""
8091
+
8087
8092
  #. module: l10n_br_fiscal
8088
8093
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_service_type__withholding_possible
8089
8094
  msgid "Subject to withholding tax"
@@ -8833,6 +8838,8 @@ msgstr ""
8833
8838
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_operation__fiscal_operation_type
8834
8839
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_definition__type_in_out
8835
8840
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_pis_cofins__piscofins_type
8841
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_product__type
8842
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_template__type
8836
8843
  msgid "Type"
8837
8844
  msgstr ""
8838
8845
 
@@ -8204,6 +8204,11 @@ msgstr ""
8204
8204
  msgid "Stock Moves?"
8205
8205
  msgstr "Movimentos de Estoque?"
8206
8206
 
8207
+ #. module: l10n_br_fiscal
8208
+ #: model:ir.model.fields.selection,name:l10n_br_fiscal.selection__product_template__type__product
8209
+ msgid "Storable Product"
8210
+ msgstr ""
8211
+
8207
8212
  #. module: l10n_br_fiscal
8208
8213
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_service_type__withholding_possible
8209
8214
  msgid "Subject to withholding tax"
@@ -8960,6 +8965,8 @@ msgstr "Situações"
8960
8965
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_operation__fiscal_operation_type
8961
8966
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_definition__type_in_out
8962
8967
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_pis_cofins__piscofins_type
8968
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_product__type
8969
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_template__type
8963
8970
  msgid "Type"
8964
8971
  msgstr "Tipo"
8965
8972
 
@@ -22,6 +22,18 @@ class ProductTemplate(models.Model):
22
22
  if fiscal_type == PRODUCT_FISCAL_TYPE_SERVICE:
23
23
  return self.env.ref(NCM_FOR_SERVICE_REF)
24
24
 
25
+ # Some modules of the repo depend on stock and have
26
+ # demo products of type 'product' (this type is added to product.template
27
+ # in the stock module).
28
+ # For some reason when running the tests, some inverse method fields then fail when
29
+ # reading 'product' value for the product type. It seems it is because l10n_br_fiscal
30
+ # doesn't depend on stock. But we don't want such a dependency.
31
+ # So a workaround to avoid the bug we add the 'product' value to the selection.
32
+ type = fields.Selection(
33
+ selection_add=[("product", "Storable Product")],
34
+ ondelete={"product": "set consu"},
35
+ )
36
+
25
37
  fiscal_type = fields.Selection(
26
38
  selection=PRODUCT_FISCAL_TYPE,
27
39
  company_dependent=True,
@@ -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:d5cadf6ed3f37ee3f29b6b3b2494d1c7092ab46ca4940dec7a7e1062cac19d5a
369
+ !! source digest: sha256:8ccfa61234f5231081f7421550321ed5a7eb118d239fc6c37cde2a24a8a8aadc
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/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>
372
372
  <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" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n-br-fiscal
3
- Version: 15.0.1.6.0.1
3
+ Version: 15.0.1.6.1.1
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:d5cadf6ed3f37ee3f29b6b3b2494d1c7092ab46ca4940dec7a7e1062cac19d5a
29
+ !! source digest: sha256:8ccfa61234f5231081f7421550321ed5a7eb118d239fc6c37cde2a24a8a8aadc
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=AUGlYlBhk28r-X2vjOpSUAnJkGCbbRm6u_gr5txN0xA,13503
1
+ odoo/addons/l10n_br_fiscal/README.rst,sha256=O9ErY6QhlsnALtWDnzPRyiSvbub_UZAGcT-x3ijlejA,13503
2
2
  odoo/addons/l10n_br_fiscal/__init__.py,sha256=16Tdff74OkWmnKSfmV6qrNkgsK12gOtMMppwWmIAFIo,144
3
- odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=vwnP9pkABpctvI_bDqbwpbD52Apu45MP6YRlClXu-IY,4114
3
+ odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=8bMFZZX70mpAMonrKMELYiUQQuyScZ5quMuRZnBDElg,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
@@ -58,8 +58,8 @@ odoo/addons/l10n_br_fiscal/demo/partner_demo.xml,sha256=Nuw5PaZ4ernV9bqEP4oRcsmV
58
58
  odoo/addons/l10n_br_fiscal/demo/product_demo.xml,sha256=D61ewI_-geCkYnCVYN9nbflZlmX_j8xwE1UWVBTr5XE,83686
59
59
  odoo/addons/l10n_br_fiscal/demo/res_users_demo.xml,sha256=CL7BmZ1xnWSh6MSWxrG9dK9C1ObTYGvgj21vCcY4_qE,599
60
60
  odoo/addons/l10n_br_fiscal/demo/subsequent_operation_demo.xml,sha256=U-PJXr6uerccXT5dR8_KXKTu1YOahR0dKBcowlHgQIU,560
61
- odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot,sha256=gPfHdcilVu0vBTtZjoeeBcGRSPXJSw5NjgQXONpIHgA,456253
62
- odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=el90aV6Q0FXCt7sr5Tuo5cYBSBugKgHxQZHzo5CTuJ4,515420
61
+ odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot,sha256=J3SzytSyyz_x-IBy6bqPlvDG0386cHLbzm_dcPIMZQw,456586
62
+ odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=nfj8eQRCI_Py3LGpsH_Cee1Osk9t41yet-dg3q20w7g,515753
63
63
  odoo/addons/l10n_br_fiscal/models/__init__.py,sha256=Baltz2F1zNbKQ1ctk1hUYepi4TxLP_SDNL45MJlfR88,2187
64
64
  odoo/addons/l10n_br_fiscal/models/cest.py,sha256=FKWv89l6m9LiB-LPN789917BwCkWshSj2nlZ6yrNtpE,1955
65
65
  odoo/addons/l10n_br_fiscal/models/cfop.py,sha256=3MF857TFGVERQcwcDM97-PcM0Xes4uTfPsAPogZG7Q4,3263
@@ -103,7 +103,7 @@ odoo/addons/l10n_br_fiscal/models/partner_profile.py,sha256=0crL892OKXZyv188KhjG
103
103
  odoo/addons/l10n_br_fiscal/models/product_genre.py,sha256=Q4NhYuwCNfwKqU6W_EOb9tzqFQ9EmOFxQZiNUm3NrVs,426
104
104
  odoo/addons/l10n_br_fiscal/models/product_mixin.py,sha256=QMFK2iU44_9Od7HSHpUI64oioeNz9opCX55t4LciBcM,1198
105
105
  odoo/addons/l10n_br_fiscal/models/product_product.py,sha256=oo-vk3FF438qeQrI7LosD0vq1-YuTgfVqrq3_UrmdgY,300
106
- odoo/addons/l10n_br_fiscal/models/product_template.py,sha256=OxsC5TUm8bYxLihP5t4u0-Pp9AYV0cg5z2wNXFiOVe8,3206
106
+ odoo/addons/l10n_br_fiscal/models/product_template.py,sha256=NUtUmjulS4jPwLfW4uLxHBTJVQhi5XYavbdiECJbttc,3834
107
107
  odoo/addons/l10n_br_fiscal/models/res_company.py,sha256=3aEriHya9Fk3jtTHz3WPAPblJRTyf54vYLLIs5PCXjs,16255
108
108
  odoo/addons/l10n_br_fiscal/models/res_config_settings.py,sha256=wqYGsGSNkbypOEU5pk2LMPYZCy7_VSdZw44hYxGpCbo,1325
109
109
  odoo/addons/l10n_br_fiscal/models/res_country_state.py,sha256=5hxWhGXqCqcH1aChGGm36d5WGjYaZXiRmDyASA6_7AM,483
@@ -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=zZRXHXaDfOEvRhnXLInubtnHOQKrbtVw9P7ciY-REB8,26173
144
+ odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=L-NFmRPaDpjusEABrG2LYsPCA3gHn6oDFPjR6YfoDtk,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
@@ -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-15.0.1.6.0.1.dist-info/METADATA,sha256=8P7ZLZH6iUhelMvMfHdPJKxth8ntKFq3p0Yd1hHAUBM,14192
228
- odoo_addon_l10n_br_fiscal-15.0.1.6.0.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
229
- odoo_addon_l10n_br_fiscal-15.0.1.6.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
230
- odoo_addon_l10n_br_fiscal-15.0.1.6.0.1.dist-info/RECORD,,
227
+ odoo_addon_l10n_br_fiscal-15.0.1.6.1.1.dist-info/METADATA,sha256=CbCzTiHh2i2u96v8kAnwj7m1GZvy6nmajHtxOy70hXE,14192
228
+ odoo_addon_l10n_br_fiscal-15.0.1.6.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
229
+ odoo_addon_l10n_br_fiscal-15.0.1.6.1.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
230
+ odoo_addon_l10n_br_fiscal-15.0.1.6.1.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5