Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
4 Replies
4926 Tampilan

Hi guys, i need your help with the redefinition of following function fields. I don't really get behind the store parameter in the 'amount' field. Any help or hints appreciated.

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

res= {}

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

total = 0.0

for line in expense.line_ids:

total += line.unit_amount * line.unit_quantity

res[expense.id] = total

return res



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

return [line.expense_id.id for line in self.pool.get('hr.expense.line').browse(cr, uid, ids,

        context=context)]



'amount': fields.function(_amount, string='Total Amount', digits_compute=dp.get_precision('Account'),

store={

'hr.expense.line': (_get_expense_from_line, ['unit_amount','unit_quantity'], 10)

}),

Avatar
Buang
Penulis

Hi Prashant thank you for your answer. Unfortunately i can't answer you under your comment. I think you got me wrong. I want to translate this code from old api to new api and i'm stuck on the store parameter of the 'amount' field.

Jawaban Terbai

Peter, the declaration of computed fields in the new API is explained in the documentation.

Using the new syntax the old `store` dictionary becomes simply `store=True` with an appropriate `@api.depends` decorator on the function implementing the field. The dependencies declared in this manner act as recompute triggers.

Here is an example in the 9.0 source code.

Not sure that's the info you were looking for, though.

Avatar
Buang
Jawaban Terbai

As long as I know you will not be able to translate that into the new api, the store value dict is not supported anymore in favor of the @api.depends and @api.onchange, but I couldn't find the flexibility of the store with a value dict with triggers. Maybe @fpodoo or @odony or someone that works for Odoo could bring some light to this

Avatar
Buang
Jawaban Terbai

i think type is missing in your field defining like type= float or char etc.

Otherwise every thing is fine.

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
0
Jul 19
2887
1
Des 17
9189
6
Jan 16
7799
1
Agu 25
304
1
Agu 25
590