Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
1533 Zobrazení

when I try to create project from kanban view - create button, It is showing the quick form, But instead I want to call the normal project creation form.

how to inherit this by extending the corresponding view?

odoo  17


Avatar
Zrušit
Nejlepší odpověď

Hi,

Create an XML file in your custom_module and overwrite the action 'open_create_project'.

You can go through the below code:

    <record id="project.open_create_project" model="ir.actions.act_window">
        <field name="name">Create a Project</field>
        <field name="res_model">project.project</field>
        <field name="view_mode">form</field>
        <field name="view_id" ref="project.edit_project"/>
        <field name="target">current</field>
        <field name="context">{"default_allow_billable": 0}</field>
    </record>

Hope it helps.


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
1
bře 15
9950
1
čvc 24
1533
2
kvě 24
1732
3
led 24
2707
0
bře 22
2862