콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다

I am trying to edit odoo inbuilt hr_attendance.py.My problem is following  validation runs for particular record and not the entire recordset. In new api we use @api multi to execute a  recordset.So how can I execute similarly using old api method of odoo 8

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

""" Alternance sign_in/sign_out check.

Previous (if exists) must be of opposite action.

Next (if exists) must be of opposite action.

"""

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

# search and browse for first previous and first next records

prev_att_ids = self.search(cr, uid, [('employee_id', '=', att.employee_id.id), ('name', '<', att.name),

('action', 'in', ('sign_in', 'sign_out'))], limit=1, order='name DESC')

next_add_ids = self.search(cr, uid, [('employee_id', '=', att.employee_id.id), ('name', '>', att.name),

('action', 'in', ('sign_in', 'sign_out'))], limit=1, order='name ASC')

prev_atts = self.browse(cr, uid, prev_att_ids, context=context)

next_atts = self.browse(cr, uid, next_add_ids, context=context)

# check for alternance, return False if at least one condition is not satisfied

if prev_atts and prev_atts[0].action == att.action:

return self.write(cr, uid, ids, {'state': True})

if next_atts and next_atts[0].action == att.action: # next exists and is same action.

return self.write(cr, uid, ids, {'state': True})

if (not prev_atts) and (not next_atts) and att.action != 'sign_in': # first attendance must be sign_in

return self.write(cr, uid, ids, {'state': True})

else:

return self.write(cr, uid, ids, {'state':False})

return True


아바타
취소
관련 게시물 답글 화면 활동
2
2월 22
5536
2
9월 15
4610
0
5월 15
3107
2
11월 23
18642
2
12월 22
3712