Hi,

I have a custom module with the a One2Many field:


class Agreement(ModelView, ModelSQL):
    "Agreement"
    __name__ = 'mod.agreement'

    date = fields.Date('Date')
    lines = fields.One2Many('disc.agreement.service',
        'agreement','Services',
        )

class AgreementLine(ModelView, ModelSQL): 
    "Agreement Line" 
    __name___ = 'mod.agreement.line'

    agreement = fields.Many2One('Agreement')
    service = fields.Many2One('mod.service', 'Service') 

class Service(ModelView, ModelSQL):
    "Service"
    __name__ = 'mod.service'

    name = fields.Char('Name')

Inside this class I have modified the search classmethod and I want to search 
Agreements by Service ('mod.service') in Agreement class('mod.agreement'), is 
this possible?

Thanks for your help and comments! 

-- 
You received this message because you are subscribed to the Google Groups 
"tryton-dev" group.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tryton-dev/23cc3ee4-523c-43a3-a1bc-9220905be050%40googlegroups.com.

Reply via email to