当configure_ok字段为true时,我想在模型中的一般信息中将产品捆绑包的总价格更新为销售价格,但当configure_ok字段为false时,销售价格应照常。
我尝试过onchange装饰器,并且也依赖于它,但它始终显示字段configure_ok丢失。尽管有configure_ok字段。
我尝试过的代码如下: @ api.one @ api.onchange('product_template.configure_ok') def UpdateValue(self): 自我记录: 如果self.configure_ok ==真: self.list_price = self.product_bundle_total 其他 self.list_price = self.list_price
预期:总价格=当configure_ok为true时的销售价格。
如果有人可以帮助我。预先感谢。