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

Hi I have to get the minimum wage of the contract list available in the database.

I am using Odoo 8.

Can you help me to write a function whose return min wage ?

Thanks.


Avatar
Buang
Penulis

def _get_wage_min(self, cr, uid, ids, field_name, arg, context=None):

res = dict.fromkeys(ids, 0.0)

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

res[contract.id] = min([contract.wage])

return res

here is my code

Post Terkait Replies Tampilan Aktivitas
1
Jul 22
3426
1
Feb 20
3918
0
Apr 16
2945
2
Okt 15
10338
1
Jun 25
769