Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
5056 Tampilan

I am trying to get every line id of hr.payroll.run  by doing this :

run_pool = self.pool.get('hr.payslip.run')
        line = run_pool.slip_ids.id and run_pool.slip_ids.id.id or False

 

but it the server said  me the object haven't slip_ids field. Why?

Avatar
Buang
Jawaban Terbai

Hello,

you can get the line ids by using

slip_ids = [x.id for x in run_pool.browse(cr, uid,run_id, context=context).slip_ids]


try it...

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
1
Jan 25
2338
2
Sep 22
10014
0
Mei 22
3006
1
Mei 22
2555
2
Apr 22
4965