mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
Merge branch '14.0' of github.com:OCA/intrastat-extrastat into 14.0
This commit is contained in:
@@ -20,10 +20,10 @@ Available addons
|
||||
addon | version | maintainers | summary
|
||||
--- | --- | --- | ---
|
||||
[intrastat_base](intrastat_base/) | 14.0.2.1.0 | | Base module for Intrastat reporting
|
||||
[intrastat_product](intrastat_product/) | 14.0.1.5.1 | | Base module for Intrastat Product
|
||||
[intrastat_product](intrastat_product/) | 14.0.1.5.2 | | Base module for Intrastat Product
|
||||
[intrastat_product_generic](intrastat_product_generic/) | 14.0.1.0.0 | | Generic Intrastat Product Declaration
|
||||
[product_harmonized_system](product_harmonized_system/) | 14.0.2.0.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Base module for Product Import/Export reports
|
||||
[product_harmonized_system_delivery](product_harmonized_system_delivery/) | 14.0.1.1.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Hide native hs_code field provided by the delivery module
|
||||
[product_harmonized_system](product_harmonized_system/) | 14.0.2.1.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Base module for Product Import/Export reports
|
||||
[product_harmonized_system_delivery](product_harmonized_system_delivery/) | 14.0.1.2.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Hide native hs_code field provided by the delivery module
|
||||
[product_harmonized_system_stock](product_harmonized_system_stock/) | 14.0.1.0.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Adds a menu entry for H.S. codes
|
||||
|
||||
[//]: # (end addons)
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
{
|
||||
"name": "Intrastat Product",
|
||||
"version": "14.0.1.5.1",
|
||||
"version": "14.0.1.5.2",
|
||||
"category": "Intrastat",
|
||||
"license": "AGPL-3",
|
||||
"summary": "Base module for Intrastat Product",
|
||||
|
||||
@@ -984,6 +984,7 @@ class IntrastatProductDeclaration(models.Model):
|
||||
"""
|
||||
return [
|
||||
"hs_code",
|
||||
"product_origin_country",
|
||||
"src_dest_country",
|
||||
"amount_company_currency",
|
||||
"transaction",
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
{
|
||||
"name": "Product Harmonized System Codes",
|
||||
"version": "14.0.2.0.0",
|
||||
"version": "14.0.2.1.0",
|
||||
"category": "Reporting",
|
||||
"license": "AGPL-3",
|
||||
"summary": "Base module for Product Import/Export reports",
|
||||
|
||||
@@ -99,6 +99,7 @@ msgstr "Nombre mostrado"
|
||||
#: model:ir.model.fields,field_description:product_harmonized_system.field_product_product__hs_code_id
|
||||
#: model:ir.model.fields,field_description:product_harmonized_system.field_product_template__hs_code_id
|
||||
#: model_terms:ir.ui.view,arch_db:product_harmonized_system.hs_code_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:product_harmonized_system.product_template_search_view
|
||||
msgid "H.S. Code"
|
||||
msgstr "Código HS"
|
||||
|
||||
|
||||
@@ -100,6 +100,7 @@ msgstr "Nom affiché"
|
||||
#: model:ir.model.fields,field_description:product_harmonized_system.field_product_product__hs_code_id
|
||||
#: model:ir.model.fields,field_description:product_harmonized_system.field_product_template__hs_code_id
|
||||
#: model_terms:ir.ui.view,arch_db:product_harmonized_system.hs_code_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:product_harmonized_system.product_template_search_view
|
||||
msgid "H.S. Code"
|
||||
msgstr "Code S.H."
|
||||
|
||||
|
||||
@@ -93,6 +93,7 @@ msgstr ""
|
||||
#: model:ir.model.fields,field_description:product_harmonized_system.field_product_product__hs_code_id
|
||||
#: model:ir.model.fields,field_description:product_harmonized_system.field_product_template__hs_code_id
|
||||
#: model_terms:ir.ui.view,arch_db:product_harmonized_system.hs_code_view_form
|
||||
#: model_terms:ir.ui.view,arch_db:product_harmonized_system.product_template_search_view
|
||||
msgid "H.S. Code"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ class HSCode(models.Model):
|
||||
|
||||
@api.model
|
||||
def _default_company_id(self):
|
||||
return self.env.company
|
||||
return False
|
||||
|
||||
@api.depends("local_code")
|
||||
def _compute_hs_code(self):
|
||||
|
||||
@@ -23,4 +23,17 @@
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
<record id="product_template_search_view" model="ir.ui.view">
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="product.product_template_search_view" />
|
||||
<field name="arch" type="xml">
|
||||
<filter name="categ_id" position="after">
|
||||
<filter
|
||||
string="H.S. Code"
|
||||
name="hs_code_groupby"
|
||||
context="{'group_by': 'hs_code_id'}"
|
||||
/>
|
||||
</filter>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
{
|
||||
"name": "Product Harmonized System Codes - Delivery",
|
||||
"version": "14.0.1.1.0",
|
||||
"version": "14.0.1.2.0",
|
||||
"category": "Reporting",
|
||||
"license": "AGPL-3",
|
||||
"summary": "Hide native hs_code field provided by the delivery module",
|
||||
|
||||
@@ -7,5 +7,4 @@ from odoo import fields, models
|
||||
class ProductTemplate(models.Model):
|
||||
_inherit = "product.template"
|
||||
|
||||
# this field cannot be stored because hs_code_id is company dependent
|
||||
hs_code = fields.Char(related="hs_code_id.hs_code", readonly=True, store=False)
|
||||
hs_code = fields.Char(related="hs_code_id.hs_code", store=True)
|
||||
|
||||
Reference in New Issue
Block a user