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

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.

Awatar
Odrzuć
Najlepsza odpowiedź

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.

Awatar
Odrzuć
Autor

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

Powiązane posty Odpowiedzi Widoki Czynność
2
mar 18
5062
0
sty 18
3174
2
lut 24
25632
3
lut 25
55531
3
wrz 15
7412