Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
1 Beantwoorden
8137 Weergaven

I would like to customize the Project Task model's user_id field , so that it only allows to select only from the Task project's team members.

I already tried adding this to the field in the form's XML:

domain="[('id','child_of',project_id.members)]"

But no success. Any suggestions?

Avatar
Annuleer

You can use the role in group to do this.

Auteur

Role in group? I'm not familiar with that.

You access menu Settings - Users - Groups. In group which you want to fix, do this on tab Rules (add new rule with "Rule Definition (Domain Filter)"). Link: https://lh5.googleusercontent.com/-I9cHAewfEIY/UiBZy5QrfQI/AAAAAAAAANg/-U8kVoHsctM/w1044-h569-no/rule.png

any other simpler solution for this question?

Beste antwoord

Hi Daniel,

what is overriding "onchange_project(project_id)" method and adding: domain for user_id there? you have the project_id so you can load the members and can add the list in return

As i read https://doc.openerp.com/6.0/developer/2_6_views_events/events/events/ correctly onchange methods can return not only values and warning but also "domain"

EDIT i just test my idea with a short modul for OpenERP 7 and it works, look at the code:

from openerp.osv import fields, osv
from openerp.addons.base_status.base_stage import base_stage

class task(base_stage, osv.osv):
    _name = "project.task"
    _inherit = "project.task"

    def onchange_project(self, cr, uid, id, project_id, context=None):
        if project_id:
            project = self.pool.get('project.project').browse(cr, uid, project_id, context=context)
            members = []            
            for m in project.members:
                members.append(m.id)
            if project and project.partner_id:
                return {'value': {'partner_id': project.partner_id.id},
                        'domain': {'user_id':[('id','in',members)]}}
            return {'domain': {'user_id':[('id','in',members)]}}
        return {}

task()

Greetings Markus

Avatar
Annuleer
Auteur

Nice hack. I wish there could be a simpler solution though. But if there isn't I'll try that. +1

Daniel, I use this hack to because I found no working domain filter to do the job ...

This won't work when the project has not been changed. i.e opening an existing record in form view. In this case, one can select any user as member...

any other simpler solution for the above question other than this one?

Gerelateerde posts Antwoorden Weergaven Activiteit
1
jan. 23
2571
1
jul. 25
630
2
jun. 25
2597
1
jun. 25
1005
3
mei 25
2562