Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
7 Răspunsuri
9310 Vizualizări

Any body please explain me about inheriting the computed field form old api to new api.

Imagine profil
Abandonează

Can you please tell what exactly you are trying to do? You want to make some changes in that function or you want to use the same function for your custom field?

Autor

Hi Akhil, Thanks for replying, I need the result form the base method and with that result I need to perform more operation and update it.

Cel mai bun răspuns

It's not possible to inherit function from Old Api to New Api

If you want change the method called for a compute field. In the first time you should inherit of the model. And in this model you override the function field with your function

Old api

class account_account_type(osv.osv):
_name = "account.account.type"
_description = "Account Type"

....

def _get_current_report_type(self, cr, uid, ids, name, arg, context=None):
res = {}
financial_report_ref = self._get_financial_report_ref(cr, uid, context=context)
for record in self.browse(cr, uid, ids, context=context):
res[record.id] = 'none'
for key, financial_report in financial_report_ref.items():
list_ids = [x.id for x in financial_report.account_type_ids]
if record.id in list_ids:
res[record.id] = key
return res
....
_columns = {
'name': fields.char('Account Type', required=True, translate=True),
......
'report_type': fields.function(_get_current_report_type, fnct_inv=_save_report_type, type='selection', string='P&L / BS Category', store=True,
selection= [('none','/'),
('income', _('Profit & Loss (Income account)')),
('expense', _('Profit & Loss (Expense account)')),
('asset', _('Balance Sheet (Asset account)')),
('liability', _('Balance Sheet (Liability account)'))], help="This field is used to generate legal reports: profit and loss, balance sheet.", required=True),
'note': fields.text('Description'),
}

New api

Class account_account_type(models.Model):
_inherit = "account.account.type"
_description = "Account Type inherited"

....

@api.depends('field1')
def _your_function(self):
Your code here
....


    report_type': fields.Selection(compute='_your_function',string='Report' .... 
Imagine profil
Abandonează

Hi John, its possible to inherit a function from old api to new api using the method decorator "@api.v7", but only in the case of compute field function, its not possible I think.

Yes it's right, It's possible to override function. In my example, I only speak for function field . Its my fault, I speak poorly.

Cel mai bun răspuns

You may redefine the same field and function in new api style by inheriting the class in your python file.

Imagine profil
Abandonează
Cel mai bun răspuns

Hello Karthik,

I think this issue could be useful,

https://github.com/odoo/odoo/issues/9699

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
aug. 25
2854
1
iul. 25
1160
1
aug. 25
1152
0
mai 25
1594
2
apr. 25
3788