Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
3 Răspunsuri
11160 Vizualizări

I'm trying to change Create Button for Product Attribute.

Its button is to add column at the top and fill it out to submit form.

But I want it to be like create button for sales order which popup form view to make product.attribute model in workflow.

Please let me know

All I've done is

<record id="eric_product_attribute" model="ir.actions.act_window">
<field name="name">Product Attributes</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">product.attribute</field>
<field name="view_mode">tree,form</field>
<field name="view_type">form</field>
<field name="view_id" ref="product.attribute_tree_view"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to define a new product Attribute.
</p>
</field>
</record>
<!-- add menu-->
<menuitem action="eric_product_attribute"
id="menu_product_attribute" name="Product Attributes"
parent="base.menu_sale_config" sequence="16" />

But when I click create button in tree view, It makes me to fill out on the column at the top.

Thanks

Imagine profil
Abandonează
Autor Cel mai bun răspuns

I found the solution with help from IT Libertas

<xpath expr="//tree" position="attributes">
    <attribute name="editable"></attribute>
</xpath>
 the attribute's value should be empty

Thanks!!
Imagine profil
Abandonează
Cel mai bun răspuns

Hi, 

if understand your requirements correctly, you just need to change the attribute 'editable" in the view product.attribute_tree_view

Inherit the view in a way similar to:

        <record id="some_form" model="ir.ui.view">
            <field name="name">some_name</field>
            <field name="model">product.attribute</field>
            <field name="inherit_id" ref="product.attribute_tree_view"/>
            <field name="arch" type="xml">
                <xpath expr="//tree" position="attributes">
                    <attribute name="editable">0</attribute>
                </xpath>
            </field>
        </record>


Imagine profil
Abandonează
Autor

I've tried editable attribute to 0 but when I clicked a create button, I could create one at the bottom of the list.

Related Posts Răspunsuri Vizualizări Activitate
1
mar. 15
4660
4
oct. 15
9993
4
iul. 15
3772
0
mar. 15
6271
1
dec. 22
6657