Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
6658 Vizualizări

I have created a custom model, eg: custom.contact.addresses.

This model has tree view and form view. Each record of this model will be associated with each website.

How can I show this models value to website. Like - I can show:

website.field_name on qweb of website.

How to show custom.contact.address.field_name on website?        

Imagine profil
Abandonează
Cel mai bun răspuns

Hi Tanzil

You calculate the object from controller using "request" .

example

from openerp import http
from openerp.http import request

@http.route('/foo', type='http', website=True)
    def action_foo(self, **kw):
         bar = 1 # You calculate the id of object and assign. I gave 1 for example.
         obj = request.env['custom.contact.addresses'].search([('id', '=', bar)])
        return request.render('YourModule.YourTemplate', {'website':obj, })

You can use in template

     <t t-esc="website.field_name"/>

All the best !

Imagine profil
Abandonează
Autor

In the custom model there is only one field called 'name'. No other field is there.

Should I create a many2one field for the website? How to let know the system the website_id?

If your many2one field is

website_id = fields.Many2one('your.model, string='Website')

You can display

<t t-esc="website.website_id.name"/>

Related Posts Răspunsuri Vizualizări Activitate
1
mai 17
5614
0
ian. 25
1189
3
dec. 19
8196
1
iun. 16
4321
16
iun. 16
19528