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.......
|
feedback
|
|
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 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. | |||
feedback
|
|
You can find an example in OpenERP developer documentation, in database normalization it's called Transitive dependency. | ||||
|
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
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' | |||
|
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), | |||
|
feedback
|