Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
7504 Widoki

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

Awatar
Odrzuć
Najlepsza odpowiedź

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'.

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć
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??

Najlepsza odpowiedź

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()
Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
mar 15
5114
1
paź 25
347
1
wrz 25
384
3
wrz 25
586
1
sie 25
740