Ir al contenido
Menú
Se marcó esta pregunta
3 Respuestas
7509 Vistas

I'm trying to add records to my one2many fields

Py :

class employee_department(osv.osv):

    _name = "employee.department"
    _description = "Employee Department"
    _columns = {
        'deprt_id' : fields.many2one('hr.department', 'Department'),
        'my_emp_ids' : fields.one2many('hr.employee', 'department_id','Employee'),

        }
def onchange_department(self, cr, uid, ids, deprt_id):
    employee_ids = self.search(cr, uid, [('department_id', '=', deprt_id)])
    return {'value': {'my_emp_ids': employee_ids}}

employee_department()

My problem is that :

When i don't include onchange_department in my xml , my o2m fields always shows the employee assigned to no. 1 ID in my department , and so on when i save it . Example : Let's say i got 3 dept , with Admin as ID no 1 , Developer as ID no 2 and Engineer as ID no 3 . When i create it for the first time , even though the department shows at Developer , the employee printed is always Admin , it apply to next create , that always show employee in Developer and Engineer dept . And when i create for the 4th time , it doesn't show any employee at all

If i include onchange_department in my xml , i always got AttributeError: 'employee_department' object has no attribute 'onchange_department' . My xml is obviously wrong so i also need help on xml as well . Thanks in advance

my xml ( form)

<form string="Employee Department"> 
<field name="deprt_id" on_change="onchange_department(deprt_id, my_emp_ids)"/>
<notebook position="before">
<page string="Members">
<field name="my_emp_ids"/>
</page>
</notebook>
</form>

about not having department_id in my class , I thought that it already covered by deprt_id since it relate to hr.department , while department id also relate to hr.department as well

Avatar
Descartar
Mejor respuesta

The mistake might be in line:

employee_ids = self.search(cr, uid, [('department_id', '=', deprt_id)])

Since you want to search for employees you should use the search method on the employee model:

employee_ids = self.pool.get('hr.employee').search(cr, uid, [('department_id','=',deprt_id)]

Your model employee.department obviously has no column 'department_id'.

Avatar
Descartar
Mejor respuesta

Maybe it's because you have a mistake.

If the code that you posted is ok. It's wrong. You have to tab your function so it's going to be inside the class. When you leave it on the first column like the class it's not inside the class and it's not going to work

Avatar
Descartar
Autor

thanks for reply . Can you explain to me how to do that ? thanks

use the "tab" key

before your def, preferrably

That's right. def onchange... and the two lines below. Press tab on each of them. Python is based on tabs.

Autor

Thanks for the kind reply , I've tried the tab , but still got an attribute error .. Is there any other mistakes beside the tab function ?

you need to call onchange function in xml for deprt_id field and in this line employee_ids = self.search(cr, uid, [('department_id', '=', deprt_id.id)])

Autor

Thanks for reply , I've tried it but it give me another AttributeError: 'int' object has no attribute 'id'

can you post the class and xml code here and your class has department_id as field??

Mejor respuesta

Your XML should be Like This:

 <form string="Employee Department"> 
<field name="deprt_id" on_change="onchange_department(deprt_id)"/>
<notebook position="before">
<page string="Members">
<field name="my_emp_ids"/>
</page>
</notebook>
</form>

And your Python code Should be Like This:

class employee_department(osv.osv):

    _name = "employee.department"
    _description = "Employee Department"
    _columns = {
        'deprt_id' : fields.many2one('hr.department', 'Department'),
        'my_emp_ids' : fields.one2many('hr.employee', 'department_id','Employee'),

        }
    def onchange_department(self, cr, uid, ids, deprt_id):
         employee_ids = self.search(cr, uid, [('department_id', '=', deprt_id)])
         return {'value': {'my_emp_ids': (4,employee_ids)}}

 employee_department()
Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
mar 15
5114
1
oct 25
347
1
sept 25
384
3
sept 25
586
1
ago 25
740