Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
2765 Visualizzazioni
  1. I need to trickle up the internal notes and attachments  to the parent accout. For an example  if Branch A is the parent Company of Branch B and we have an employee Mr.X from Branch B, we need to trickle up all of  the internal notes and attachments of Mr.X, in not only Branch B ,also in Branch A.

Avatar
Abbandona
Risposta migliore

You can make a new method in the employee that returns the internal notes and attachments. If you search for the employee record you can call this method to get the data from anywhere.

def get_employee_notes_attachments(self):
    return employee.internal_notes, employee.attachments

and call it like this:

employee = self.env['employee.model'].search([('id', '=', employee_id)])
notes, attachments = employee.get_employee_notes_attachments()

I don't know what odoo version you use, this answer would be for v8 or newer.

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
1
gen 25
2556
0
dic 24
1489
0
set 23
1745
1
mar 23
6692
2
apr 22
4131