Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
7582 Представления

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?

Аватар
Отменить
Лучший ответ

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

Аватар
Отменить
Related Posts Ответы Просмотры Активность
1
апр. 25
3700
3
дек. 22
11625
5
апр. 24
42187
6
апр. 24
39023
3
мар. 24
10630