Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
4949 Prikazi

Hello All,

I have a many2one field from res.s. And for this fields i created three groups Group A, Group B and Group C. For these groups i applied on-change for users related to group. And on-change work well. Now, i want that Group B is default group selected. So, How to fix Group B default on form(group id = 33) ?

My python code:

'group_id':fields.many2one('res.groups', string='Group:')

'assign_to': fields.many2one('res.users','Assigned To:',)

def onchange_assign(self, cr, uid, ids, group_id, context=None):

        if not context:

            context = {}

        res = {}

        groups_obj = self.pool.get('res.groups')

        sunarc_obj = self.pool.get('sun.helpdesk')

        #record_id = context.get('active_id')

        print "g:", group_id

        #data = sunarc_obj.read(cr, uid, record_id)

        #print data

        #group_id = data['group_id'] and data['group_id'][0]

        groups_ids = []

        groups = groups_obj.browse(cr, uid, group_id, context=context)

        print "groups:", groups, groups.users.ids

        if group_id:

            res['domain'] = {'assign_to': [('id', '=', groups.users.ids)]}

        print "group_id"

        return res


XML Code:-

<field name="group_id" on_change="onchange_assign(group_id)"/>                        

<field name="assign_to" options="{'create':false}"/>

Avatar
Opusti
Best Answer

Hello pawan ,

you can try this:

def _get_default_esc(self):
print "yes:", 33
return 33

'group_id' : fields.many2one('res.groups', "Group", change_default=True, default=_get_default_esc),
Avatar
Opusti
Avtor

Thanks, Manish it's work for me. But can you tell me how to done this with search method.

Hello Pawan try this

def _get_default_esc(self):

esc_to = self.env['res.groups'].search([('name', '=', 'Group B')], limit=1)

print "Group:"

return esc_to

why don't you add a configure section to select it from there and use it. not to change the code when you want to assign new group as default or install it on new db.

How to do this ?? can you explain in more detail ????

Related Posts Odgovori Prikazi Aktivnost
2
avg. 20
8518
2
avg. 22
6814
1
jul. 19
3240
0
nov. 17
6615
4
sep. 17
25425