Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
14255 Weergaven

Firstly, i want to create a form in OpenERP with a button on it. When that button clicked, that button will link to the project.issue form. can I? What must I write on the button?

I'm using developers mode on OpenERP.

Avatar
Annuleer
Beste antwoord

Try this,

Suppose you want to open Sale Order form view from your Object. Do as per following

In your xml file, Make Action as per following

For Example,

    <record model="ir.actions.act_window" id="action_your_action_form_test">
        <field name="name">My Test</field>
        <field name="type">ir.actions.act_window</field>
        <field name="res_model">your.object</field>
        <field name="view_type">form</field>
        <field name="view_id" ref="view_object_form_view"/>
    </record>

and for button ,

<button name="%(your_module.action_your_action_form_test)d" string="Test" type="action" states="draft" />

Hope it work for you.

Avatar
Annuleer
Auteur

Sorry but it doesnt work sir. I changed "%(your_module.action_sale_order_form_test)d" to "%(project.action_sale_order_form_test)d" is it true? But even the button doesnt showed up.

Hi, action_sale_order_form_test is example for your considertion, you must make your object's form view and action, and pass your form view id in your action as shown in above example. and pass this action id in your button. I have tested and it works for me. see my updated answer

Gerelateerde posts Antwoorden Weergaven Activiteit
2
mrt. 18
5062
0
jan. 18
3174
2
feb. 24
25632
3
feb. 25
55531
3
sep. 15
7411