Odoo 添加一个 Treeview 网络控制器

Odoo adding a Treeview web controller

我已经为这个特定问题苦苦思索了至少 3 天,无法弄清楚我应该修改哪里以向特定树视图添加新操作。

据我所知,它应该是一个网络控制器,但我不知道在哪里修改(我是在我的 .py 还是 .xml 文件中修改?)
有什么办法可以为此添加新操作吗?
如果您知道任何答案,请尽可能具体,因为 none 我可以找到有用的内容。

感谢您的宝贵时间。

我自己解决了:

1) Go to the xml file you want to modify the treeview
2) Add the following code

<act_window 
    name="New Sub menu" 
    res_model="<target.model>" 
    src_model="<source.model>"
    key2="client_action_multi"  <!-- This will make it show on the "More" -->
    <!-- "client_print_multi" => Will make it show on the "Print" -->
    view_mode="form"
    target="new" 
    view_type="form"
    id="act_new_sub_menu" 
/>