تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
14282 أدوات العرض

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.

الصورة الرمزية
إهمال
أفضل إجابة

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.

الصورة الرمزية
إهمال
الكاتب

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

المنشورات ذات الصلة الردود أدوات العرض النشاط
2
مارس 18
5092
0
يناير 18
3219
2
فبراير 24
25660
3
فبراير 25
55569
3
سبتمبر 15
7438