odoo-addon-l10n-br-fiscal 16.0.1.5.1__py3-none-any.whl → 16.0.1.5.2.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:8ae1e10413d8b0c277daeb2889ac8a6c0bcca4f4a95159583a54be1e8ab2d854
10
+ !! source digest: sha256:a828e5321475b9dada4894430fb15e906fe5e2044a7e4815cd66020a6f6299ca
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": "16.0.1.5.1",
13
+ "version": "16.0.1.5.2",
14
14
  "depends": [
15
15
  "product",
16
16
  "l10n_br_base",
@@ -7981,6 +7981,11 @@ msgstr ""
7981
7981
  msgid "Stock Moves?"
7982
7982
  msgstr ""
7983
7983
 
7984
+ #. module: l10n_br_fiscal
7985
+ #: model:ir.model.fields.selection,name:l10n_br_fiscal.selection__product_template__type__product
7986
+ msgid "Storable Product"
7987
+ msgstr ""
7988
+
7984
7989
  #. module: l10n_br_fiscal
7985
7990
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_service_type__withholding_possible
7986
7991
  msgid "Subject to withholding tax"
@@ -8741,6 +8746,8 @@ msgstr ""
8741
8746
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_operation__fiscal_operation_type
8742
8747
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_definition__type_in_out
8743
8748
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_pis_cofins__piscofins_type
8749
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_product__type
8750
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_template__type
8744
8751
  msgid "Type"
8745
8752
  msgstr ""
8746
8753
 
@@ -8101,6 +8101,11 @@ msgstr ""
8101
8101
  msgid "Stock Moves?"
8102
8102
  msgstr "Movimentos de Estoque?"
8103
8103
 
8104
+ #. module: l10n_br_fiscal
8105
+ #: model:ir.model.fields.selection,name:l10n_br_fiscal.selection__product_template__type__product
8106
+ msgid "Storable Product"
8107
+ msgstr ""
8108
+
8104
8109
  #. module: l10n_br_fiscal
8105
8110
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_service_type__withholding_possible
8106
8111
  msgid "Subject to withholding tax"
@@ -8868,6 +8873,8 @@ msgstr "Situações"
8868
8873
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_operation__fiscal_operation_type
8869
8874
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_definition__type_in_out
8870
8875
  #: model:ir.model.fields,field_description:l10n_br_fiscal.field_l10n_br_fiscal_tax_pis_cofins__piscofins_type
8876
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_product__type
8877
+ #: model:ir.model.fields,field_description:l10n_br_fiscal.field_product_template__type
8871
8878
  msgid "Type"
8872
8879
  msgstr "Tipo"
8873
8880
 
@@ -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:8ae1e10413d8b0c277daeb2889ac8a6c0bcca4f4a95159583a54be1e8ab2d854
369
+ !! source digest: sha256:a828e5321475b9dada4894430fb15e906fe5e2044a7e4815cd66020a6f6299ca
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&amp;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" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n-br-fiscal
3
- Version: 16.0.1.5.1
3
+ Version: 16.0.1.5.2.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:8ae1e10413d8b0c277daeb2889ac8a6c0bcca4f4a95159583a54be1e8ab2d854
29
+ !! source digest: sha256:a828e5321475b9dada4894430fb15e906fe5e2044a7e4815cd66020a6f6299ca
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=hosZg1rXAmRO65oi26ylm_Zypyf8YHISBaBwPep0Lsc,13503
1
+ odoo/addons/l10n_br_fiscal/README.rst,sha256=2Jt0G7LG4Bd9rabQhiBzFCW12MF1zhGorefZ87KBDH8,13503
2
2
  odoo/addons/l10n_br_fiscal/__init__.py,sha256=16Tdff74OkWmnKSfmV6qrNkgsK12gOtMMppwWmIAFIo,144
3
- odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=i06tQ0d7H39u5mV2eWlnK2s8x3N32yuI-OraLkBIuSE,4114
3
+ odoo/addons/l10n_br_fiscal/__manifest__.py,sha256=uKfVPTWCZhgWjKyuGRh4f8YqLobbPELeaJdRaspoL5M,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=t9rFj5EsEDxEJ64yDIzXXKIfDErDxAWzxc2uZkf_N7E,438862
62
- odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=1fQNTKcR639Gb-cOvyCCJBq25_Li3YV0Yp8S4z4AteE,498498
61
+ odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot,sha256=xkz4s5Unl38rvXKcDadTcpAc7ofibwEDGKAoZ7ZAizs,439195
62
+ odoo/addons/l10n_br_fiscal/i18n/pt_BR.po,sha256=MHpV3WenoEiwPfbI4LPDiDaJa-beSppO-XIp6qaMJLw,498831
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=Y3XEgbpO78xLpTIXKoZjrdtYKbLJ38SmY5TjCvNdB2g,26173
144
+ odoo/addons/l10n_br_fiscal/static/description/index.html,sha256=p1aQqk-3MNX24Am9BLLkB5xZ6wDYn0_bs87RPqva25U,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-16.0.1.5.1.dist-info/METADATA,sha256=mptCh8cuPWjKX_HXMyATsooSAQW_U_IPrYL6qWJuUv4,14191
228
- odoo_addon_l10n_br_fiscal-16.0.1.5.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
229
- odoo_addon_l10n_br_fiscal-16.0.1.5.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
230
- odoo_addon_l10n_br_fiscal-16.0.1.5.1.dist-info/RECORD,,
227
+ odoo_addon_l10n_br_fiscal-16.0.1.5.2.1.dist-info/METADATA,sha256=dN3a5KdVTlRx46_L8n5cHQT7d893Dy0cr3W1c_VQJgQ,14193
228
+ odoo_addon_l10n_br_fiscal-16.0.1.5.2.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
229
+ odoo_addon_l10n_br_fiscal-16.0.1.5.2.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
230
+ odoo_addon_l10n_br_fiscal-16.0.1.5.2.1.dist-info/RECORD,,