mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
[MIG] Migrate all modules from v11 to v12
This commit is contained in:
committed by
Lukas Tran
parent
f425e58da5
commit
d7eb033c2d
@@ -4,13 +4,14 @@
|
||||
|
||||
{
|
||||
'name': 'Product Harmonized System Codes - Delivery',
|
||||
'version': '11.0.1.0.0',
|
||||
'version': '12.0.1.0.0',
|
||||
'category': 'Reporting',
|
||||
'license': 'AGPL-3',
|
||||
'summary': 'Hide native hs_code field provided by the delivery module',
|
||||
'summary': 'Hide native hs_code field provided by the delivery_hs_code '
|
||||
'module',
|
||||
'author': 'Akretion, Odoo Community Association (OCA)',
|
||||
'depends': ['delivery', 'product_harmonized_system'],
|
||||
'depends': ['delivery_hs_code', 'product_harmonized_system'],
|
||||
'data': ['views/product_template.xml'],
|
||||
'installable': False,
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
}
|
||||
|
||||
14
product_harmonized_system_delivery/i18n/es.po
Normal file
14
product_harmonized_system_delivery/i18n/es.po
Normal file
@@ -0,0 +1,14 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
@@ -0,0 +1,14 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 12.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
@@ -1 +1 @@
|
||||
The OCA module *product_harmonized_system* adds a many2one field *hs_code_id* on product templates that points to an *H.S. Code* object. But the *delivery* module from the official addons adds a char field *hs_code* on product templates, which has the same purpose, but we can't use it because we need structured data for H.S. codes. This module hides the *hs_code* field added by the *delivery* module, to avoid confusion.
|
||||
The OCA module *product_harmonized_system* adds a many2one field *hs_code_id* on product templates that points to an *H.S. Code* object. But the *delivery_hs_code* module from the official addons (an auto-install module that depends on *delivery*) adds a char field *hs_code* on product templates, which has the same purpose, but we can't use it because we need structured data for H.S. codes. This module hides the *hs_code* field added by the *delivery_hs_code* module, to avoid confusion.
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<record id="product_template_hs_code" model="ir.ui.view">
|
||||
<field name="name">hide_native_hs_code_field.product.template.form</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="delivery.product_template_hs_code" />
|
||||
<field name="inherit_id" ref="delivery_hs_code.product_template_hs_code" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="hs_code" position="attributes">
|
||||
<attribute name="invisible">1</attribute>
|
||||
|
||||
Reference in New Issue
Block a user