Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
5709 Lượt xem

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.


Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Solution: 

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

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 7 25
2996
1
thg 10 24
2185
1
thg 4 24
2242
0
thg 9 23
1745
1
thg 6 23
2196