Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
11147 Widoki

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

Awatar
Odrzuć
Autor Najlepsza odpowiedź

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!!
Awatar
Odrzuć
Najlepsza odpowiedź

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>


Awatar
Odrzuć
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.

Powiązane posty Odpowiedzi Widoki Czynność
1
mar 15
4655
4
paź 15
9985
4
lip 15
3765
0
mar 15
6268
1
gru 22
6654