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

Hello guys,

I have this class (almost the same of ./addons/report/controllers/main.py) in my custom module :

class PTReportController(ReportController):
    @route(['/report/download'], type='http', auth="user")
    def report_download(self, data, token):

...........................

I use this method mainly to change the name of PDF reports.

For the actual user, how could I get the company name or the company ID in this method?

I would like to put is in the filename of the reports.

Thanks for your ideas

アバター
破棄
最善の回答

Try like this:

self.cr, self.uid, self.pool = request.cr, request.uid, request.registry

user = self.pool["res.users"].browse(self.cr, self.uid, self.uid)
company_id = user.company_id.id
company_name = user.company_id.name

アバター
破棄
著作者

Great, I try it now and I come back.

著作者

Your code is perfect! Thanks a lot!

最善の回答

use request.registry.get('res.users') instead of self.pool["res.users"]

Example,

import openerp
    
    @route(['/report/download'], type='http', auth="user")
    def report_download(self, data, token):
        cr, uid, context = request.cr, openerp.SUPERUSER_ID, request.context
        user = request.registry.get('res.users').read(cr, uid, uid, ["company_id"])
        company_id = user['company_id'][0]
        company_name = user['company_id'][1]

アバター
破棄
著作者

thanks

関連投稿 返信 ビュー 活動
0
4月 24
2003
3
3月 21
12228
0
6月 20
2687
1
5月 20
9741
27
8月 24
40306