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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
1
회신
8820
화면
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
|
33959 | ||
|
3
11월 24
|
2003 | ||
|
4
6월 24
|
17892 | ||
|
3
1월 21
|
5658 | ||
|
4
4월 20
|
9519 |