跳至内容
菜单
此问题已终结
1 回复
8486 查看


class ProductTemplate(models.Model):
_inherit = 'product.template'

qty = fields.Float(compute='_calculate',store=True)
@api.multi
@api.depends('qty_available')
def _calculate(self):

for rec in self:

if rec.qty_available:

rec.qty = rec.qty_available


形象
丢弃
最佳答案

Hello Mostafa,

Check these answers: https://stackoverflow.com/questions/31945069/odoo-computed-fields-works-without-store-true-doesnt-work-with-store-true


Thanks

形象
丢弃
编写者

i found it the problem with qty_available which field shoud i use in @api.depends(' ') when quantity on hand change

相关帖文 回复 查看 活动
0
4月 18
33257
3
11月 24
1586
4
6月 24
17272
3
1月 21
5270
4
4月 20
9079