我不断收到此错误,我错过了什么?
我尝试了多种方法,但我总是收到这个错误,我确信我错过了一些简单的东西。
图片链接中的 Odoo 设置示例图片
from odoo import api
x_studio_field_CKrxZ = fields.Float(compute='compute_product_dimension', store=True)
@api.depends('list_price','standard_price')
def compute_product_dimension(self):
for record in self:
record['compute_product_dimension'] = record.list_price + record.standard_price
Odoo 中的错误
ValueError: forbidden opcode(s) in "from odoo import api\r\nx_studio_field_CKrxZ = fields.Float(compute='compute_product_dimension', store=True)\r\n@api.depends('list_price','standard_price')\r\ndef compute_product_dimension(self):\r\n for record in self:\r\n record['compute_product_dimension'] = record.list_price + record.standard_price \r\n": IMPORT_NAME, IMPORT_FROM