Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
7602 Vizualizări

Hello,

I'm trying to make a module to manage travel leaves for employees.

What I need t do is adding extra float field in hr.employee module of 'available_tickets' . To be allocated from other module named "travel_request". How t do this?


Here's my code:

class hr_employee(osv.osv):
_inherit="hr.employee"
_columns = {
        'available_tickets': fields.float("Available Tickets"),
}


class travel_request(osv.osv):

_name = 'travel.request'

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

emp_ticket = self.pool.get('hr.employee').browse(cr, uid, ids)

return emp_ticket.available_tickets

_columns = {

'no_tickets': fields.function(_get_tickets, string='Number of Tickets', type='float'),

     }


But it didn't work.. any idea how to fix it?

Imagine profil
Abandonează
Cel mai bun răspuns

Hi Youta,

Just try to search 'hr.employee' based on any condition. And browse the records.

For ex:-

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

        hr_employee_obj = self.pool.get('hr.employee')

        res = {}

        for record in self.browse(cr, uid, ids, context=None): 

     emp_ticket_ids = hr_employee_obj.search(cr, uid, [], ids, context=None)

            emp_ticket = hr_employee_obj.browse(cr, uid, emp_ticket_ids[0], context=None)

            res['no_tickets'] = emp_ticket.available_tickets

        return res

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
1
apr. 25
3731
3
dec. 22
11650
5
apr. 24
42208
6
apr. 24
39059
3
mar. 24
10650