跳至内容
菜单
此问题已终结
2 回复
4126 查看

http://localhost:8070/web#menu_id=525&action=694


i want to get action id (as number/integer) from external id ('model.action_id') using javascript, any idea?


形象
丢弃
最佳答案

You can use the rpc method in JavaScript to call the search method on the ir.actions.act_window model to get the action ID using the external ID. Here is an example code snippet that you can use:

javascript

var external_id = 'model.action_id';
var model = 'ir.actions.act_window';
rpc.query({
model: model,
method: 'search',
args: [['xml_id', '=', external_id]],
context: session.user_context,
}).then(function(ids) {
if (ids.length > 0) {
var action_id = ids[0];
console.log('Action ID: ' + action_id);
}
});

This code will search for the ir.actions.act_window record with the specified xml_id (which is the external ID) and return the ID of the first record found. You can then use the action_id variable to perform other operations with the action, such as opening it.

形象
丢弃
编写者

it works, thak you

编写者 最佳答案

it works, thak you

形象
丢弃
相关帖文 回复 查看 活动
1
3月 22
1958
0
7月 22
2826
1
6月 22
6210
1
6月 25
1207
3
7月 25
2953