Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
17671 มุมมอง

I need to customize my module, how can i customize?

@ Http.route ('/ web / session / change_password', type = 'json', auth = "user")

def change_password (self, fields)


อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

@Lokesh EM

Just import the original controller module class and create a new class that inherit from the original controller class and override the method with the new route and if you don't need to do anything else in the method override just call super.

Like:

from addons.web.controllers.main import Session
from odoo import http

class MySession(Session):
    @http.route('/web/session/change_password', type='json', auth="user")
    def change_password(self, fields):
         return super(MySession,self).change_password(fields)
อวตาร
ละทิ้ง

You can use empty decorator, if don't need to change anything there:

@http.route()

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
เม.ย. 24
26488
1
มี.ค. 15
5620
1
มี.ค. 15
4578
1
มี.ค. 15
6529
Force change password first login แก้ไขแล้ว
4
พ.ย. 24
2597