Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
5706 Tampilan

I have enable the reset password setting in openerp. And found that a button appears at the login screen enabling user to reset password. Inspecting this button, I found that this button is using a xml rpc call service to send a email with reset password link.. 

self.rpc("/auth_signup/reset_password", { dbname: db, login: login }).done(function(result) {

                self.show_error(_t("An email has been sent with credentials to reset your password"));

});

So I wanted to use this service in my client app, to enable the user to reset password same as the openerp does, so I have written the following code:

$.xmlrpc({  

url: 'http://openerp.example.com/auth_signup/reset_password',

methodName: 'call',

dataType: 'jsonrpc',

// params: [dbname, 'sperson3', ''],

params: {'dbname':dbname, 'login':'user1', 'context':{}},

success: function(response, status, jqXHR) {

console.log(response);

alert('success')

},

error: function(response, status, jqXHR) {

console.log(response);

alert('error')

},

});

But this always returning in error. am I doing something wrong? can we use the service like this. Please help me for this.


Avatar
Buang
Penulis Jawaban Terbai

Solution: 

odoo.com/forum/help-1/question/how-to-implement-the-openerp-v7-forgot-password-functionality-in-client-app-84886

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
3
Jul 25
2994
1
Okt 24
2185
1
Apr 24
2241
0
Sep 23
1744
1
Jun 23
2195