This commit is contained in:
2025-12-29 20:50:07 +01:00
parent dea364d46c
commit 44a5cb9f64

View File

@@ -20687,9 +20687,9 @@ function eval_pyson(value){
if (event.data?.type === "exec_window"){ if (event.data?.type === "exec_window"){
const { model, res_id, view_mode, domain } = event.data.payload || {}; const { model, res_id, view_mode, domain } = event.data.payload || {};
var action = { var action = {
id: 'act_allocation_matched_form', // id: 'act_allocation_matched_form',
type: 'ir.action.act_window', type: 'ir.action.act_window',
name: 'Lots matched', // name: 'Lots matched',
res_model: 'lot.report', res_model: 'lot.report',
pyson_domain: '[["r_lot_matched", ">", 0]]', pyson_domain: '[["r_lot_matched", ">", 0]]',
@@ -20713,14 +20713,6 @@ function eval_pyson(value){
Sao.Action.exec_action(action, { ids: [] }, {}); Sao.Action.exec_action(action, { ids: [] }, {});
} }
if (event.data?.type === "exec_window2"){
Sao.rpc({
method: 'model.ir.action.act_window.get_action',
params: ['act_allocation_matched_form']
}, Sao.Session.current_session).then(function(action) {
Sao.Action.exec_action(action, { ids: [] }, {});
});
}
}); });
Sao.renderHTMLViewerContent = function(container, value, height, width, record) { Sao.renderHTMLViewerContent = function(container, value, height, width, record) {