I want to know the something about related fields, how it can be helped, and for which kind of scenario I should use fields.related, if anybody can provide small example for real use of fields.related it would be great

Thanks in advance.......

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

It lets you pull a field from a related table. You can find more details in the developer book, and one example to look at is the order_partner_id field of the sale_order_line class. In version 5.14, that's at line 806 of addons/sale/sale.py.

I often find that I want to display a field in a list, but it's on a parent record instead of the actual table that I'm listing.

link|improve this answer
I was thinking the same, I've tried the example from developer book too, its great, in prior version I use to achieve this by function field - great to have related fields now - it works upto n level ! bingo !!! - Thanks – necromancer Oct 9 '10 at 4:24
feedback

You can find an example in OpenERP developer documentation, in database normalization it's called Transitive dependency.

link|improve this answer
feedback

When using a related field you have to first select which field to be related. For example I'm creating a new module for adding student details. Here the student is actually the partner.So _rec_name='partner_id' is taken.In res.partner you may have seen the 'ref' field. The value in the 'ref' field is taken as the internal_number for the student module. So what we do here is

class student(osv.osv):
    _name='student'
    _rec_name='partner_id'
    _columns ={
           'partner_id':fields.many2one('res.partner','Name'),
           'internal_number':fields.related('partner_id', 'ref', type='char', size=16, string='Internal Number'),
    }
student()

If the field we want to show as related field is a selection field, then you have to provide type='selection',and selection=[(case1,case1),(case2,case2),...], a list of tuples. If it is a many2one field, then type='many2one' and relation='model_name'

link|improve this answer
feedback

related fields leads the control to another table the parent table wil have a onetomany relation with the child table and the child table have a manytoone relation towards the parent table. eg: the account.invoice to account.invoice.line with the following field

'invoice_line': fields.one2many('account.invoice.line', 'invoice_id', 'Invoice Lines', readonly=True, states={'draft':[('readonly',False)]}),

and account.invoice.line relates to account.invoice with the following code in reverse.

'invoice_id': fields.many2one('account.invoice', 'Invoice Reference', ondelete='cascade', select=True),

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.