コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
2397 ビュー

Need to generate report for number of times user logged into odoo based on monthwise.

アバター
破棄
最善の回答

I am not sure and I don't know that Odoo stores the logged info in database.

My hint is that you override the controller 

@http.route('/web/login', type='http', auth="none")
def web_login(self, redirect=None, **kw):
   # ...................

Inside this controller, store the logged info to database with uid, date etc . 

Then you can create report from it


アバター
破棄
著作者

Thanks. I managed with audit_logs module and generated report by fetching data from this module. Anyway i will try your method.