Hello guys,
We are on Odoo 8. In Warehouse->Inventory Control->Inventory Adjustements
The view is stock.view_inventory_form at this place.
Is it possible to display prices and values for each inventory line there?
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hello guys,
We are on Odoo 8. In Warehouse->Inventory Control->Inventory Adjustements
The view is stock.view_inventory_form at this place.
Is it possible to display prices and values for each inventory line there?
Thanks
My solution (with current cost price, not history):
class stock_inventory_line(models.Model):
_inherit = 'stock.inventory.line'
@api.one
def _get_value(self):
self.value = self.price * self.product_qty
price = fields.Float(string='Cost price',related='product_id.standard_price',radonly=True,company_dependent=True)
value = fields.Float(string='Value',compute='_get_value')
unfortunately company_dependent=True - see issue https://github.com/odoo/odoo/issues/9450
Update #1
In the view :
<record id="view_inventory_form_inherit_pt" model="ir.ui.view">
<field name="name">stock.inventory.form.inherit.pt</field>
<field name="model">stock.inventory</field>
<field name="inherit_id" ref="stock.view_inventory_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='theoretical_qty']" position="after">
<field name="value"/>
</xpath>
</field>
</record>
what a beast. I will see it soon. thanks.
Great, it works the first shot! Thanks a lot my friend.
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 7 24
|
2048 | ||
|
1
thg 3 24
|
2279 | ||
Out of Stock
Đã xử lý
|
|
4
thg 2 24
|
5331 | |
|
1
thg 7 23
|
2925 | ||
|
1
thg 5 23
|
3577 |