跳至内容
菜单
此问题已终结
2 回复
22571 查看

My question concern version 6.0 but answer for v7 are welcome too.

Url of pages in openerp can be shared easily by copy/paste (for example a link to specific order).

But how to know (or to re-write) url of a specific page in the code (to send it by email for example) ?

Thanks,

形象
丢弃
最佳答案

In Odoo 8:

base_url = self.env['ir.config_parameter'].get_param('web.base.url')

形象
丢弃
最佳答案

Hello Clément,

this is exactly what does portal module :

`

try:
    self.pool.get(mail.model).check_access_rule(cr, related_user.id, [mail.res_id], 'read', context=context)

    url = partner_obj._get_signup_url_for_action(cr, related_user.id, [partner.id], action='', res_id=mail.res_id, model=mail.model, context=context)[partner.id]

    text = _("""<p>Access this document <a href="%s">directly in OpenERP</a></p>""") % url

except except_orm, e:

`

this code is from addons/portal/mail_mail.py.

regards, Marc.

PS: vote if you find this post useful

形象
丢弃
相关帖文 回复 查看 活动
1
12月 17
13629
1
3月 15
6273
0
3月 15
3808
1
3月 15
4139
2
1月 24
13629