gpt4 book ai didi

python - 为什么我的计算域在反面不起作用?

转载 作者:太空宇宙 更新时间:2023-11-04 04:04:10 25 4
gpt4 key购买 nike

我有计算字段 x_totalunity,它取决于字段 product_uom_qtyx_unitparcarton

我想要的是能够在 x_totalunity 中写入任何值,并且 product_uom_qty 会因此发生变化(product_uom_qty = x_totalunity/x_unitparcarton).但这不起作用。

这是我的代码:

@api.depends('product_uom_qty', 'discount', 'price_unit', 'tax_id',
'x_unitparcarton' )
def _compute_amount(self):
"""
compute the amounts of the SO line.
"""
for line in self:
line.x_totalunity = line.product_uom_qty * line.x_unitparcarton

x_totalunity = fields.Float(compute='_compute_amount', string='Total unitéé',
readonly=False, store=True , required=True, copy=True)

最佳答案

首先,从 @api.depends 中删除 discountprice_unittax_id,因为它们似乎与 x_totalunity 的计算无关。

然后,我认为您正在寻找参数 inverse,以在有人手动修改计算字段的情况下执行一些操作:

@api.multi
@api.depends('product_uom_qty', 'x_unitparcarton')
def _compute_x_totalunity(self):
"""Compute the amounts of the SO line."""
for line in self:
line.x_totalunity = line.product_uom_qty * line.x_unitparcarton

@api.multi
def _inverse_x_totalunity(self):
for line in self:
line.product_uom_qty = line.x_totalunity / line.x_unitparcarton

x_totalunity = fields.Float(
compute='_compute_x_totalunity',
inverse='_inverse_x_totalunity',
string='Total unitéé',
required=True,
readonly=False,
store=True,
copy=True,
)

关于python - 为什么我的计算域在反面不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57683417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com