[IMP] hide description field on product

This commit is contained in:
David Beal
2016-05-24 11:36:13 +02:00
parent 31c6246e2c
commit 005063e8c6
3 changed files with 7 additions and 1 deletions

View File

@@ -39,7 +39,8 @@ By default, users in the Partner Contact group also have create/write access on
It also adds a log message at INFO level when sending an email via SMTP. It also adds a log message at INFO level when sending an email via SMTP.
It displays the Local modules by default in tree view (instead of Kanban) filtered on installed modules (instead of filtered on Apps). It displays the Local modules by default in tree view (instead of Kanban) without filter.
A group by 'State' is added to module search view.
""", """,
'author': 'Akretion', 'author': 'Akretion',
'website': 'http://www.akretion.com', 'website': 'http://www.akretion.com',

View File

@@ -37,6 +37,8 @@ The usability enhancements include:
* wider name field in product form view * wider name field in product form view
* hide description field on product (description_sale must be use instead of description)
This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>. This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
""", """,
'author': 'Akretion', 'author': 'Akretion',

View File

@@ -85,6 +85,9 @@
<field name="name" position="attributes"> <field name="name" position="attributes">
<attribute name="class"></attribute> <attribute name="class"></attribute>
</field> </field>
<field name="description" position="attributes">
<attribute name="attrs">{'invisible': True}</attribute>
</field>
<!-- END for wider 'name' field --> <!-- END for wider 'name' field -->
</field> </field>
</record> </record>