Odoo ir value 分析

源代码位置:openerp/addons/base/ir/ir_values.py

1 ACTION_SLOTS = [

2                 "client_action_multi",  # sidebar wizard action

3                 "client_print_multi",   # sidebar report printing button

4                 "client_action_relate", # sidebar related link

5                 "tree_but_open",        # double-click on item in tree view

6                 "tree_but_action",      # deprecated: same as tree_but_open

7                ]

一,可用的动作:

1.client_action_multi :wizard 动作

2.client_print_multi : 打印报表动作

3.client_acton_related: 相关链接

4.tree_but_open:双击树形视图动作

5.tree_but_action:同tree_but_open

 

你可能感兴趣的:(value)