跳至內容
選單
此問題已被標幟
1 回覆
2070 瀏覽次數
odoo.define('ecare_medical_history.EditPatientProfile', function (require) {
"use strict";
self = this;
var rpc = require('web.rpc');
var AbstractAction = require('web.AbstractAction');
var servicesMixin = require('web.ServicesMixin');
var core = require('web.core');

$(document).on('click', '.editPatientProfile', async function() {

try {
var result = await rpc.query({
model: 'ec.patient.timeline',
method: 'action_open_patient_time_view',
args: [],
});

alert("test");
console.log(result);

// Check if the result is valid before calling do_action
if (result) {
return await this.do_action(result);
} else {
console.error('RPC call did not return a valid result.');
}
} catch (error) {
console.error('Error while making the RPC call:', error);
}
});




});


頭像
捨棄
最佳答案

Hi,

Can you try to write your function like this:


odoo.define('ecare_medical_history.EditPatientProfile', function (require) {

"use strict";

        self = this;

        var rpc = require('web.rpc');

        var AbstractAction = require('web.AbstractAction');

        var servicesMixin = require('web.ServicesMixin');

        var core = require('web.core');


        $(document).on('click', '.editPatientProfile', async function() {


            try {

                var result = await rpc.query({

                    model: 'ec.patient.timeline',

                    method: 'action_open_patient_time_view',

                    args: [],

                });


                alert("test");

                console.log(result);


                // Check if the result is valid before calling do_action

                if (result) {

                    return await self.do_action(result);

                } else {

                    console.error('RPC call did not return a valid result.');

                }

            } catch (error) {

                console.error('Error while making the RPC call:', error);

            }

        });

}); 

Use self instead of this.


Hope it helps

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
4月 25
1351
Odoo App 已解決
1
11月 23
1915
0
5月 24
1655
0
9月 23
2600
0
9月 23
2215