I need to show the product cost on the order line so that product unit price can be adjusted during the sales order creation. In what way I can achieve it in odoo 15.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
You can do it by adding the cost(Any name you want to give) field in the sale order line by inheriting the 'sale.order.line'.
And write onchnage on the product_id field i.e. When a product is changed product
field data is automatically added in the field you defined.
Hello, Sidharth Soman
I hope you are doing great.
You can add cost(Any name you want to give) field in the sale order line by inherit the 'sale.order.line'. And write onchnage on the product i.e. When product is changed product cost will automatically added in the field you defined(Here it is cost).
Find codein Comment.
I hope this will help you.
Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari
--> (.py) Inherit sale order line
class SaleOrderLine(models.Model):
_inherit = 'sale.order.line'
cost = fields.Float()
@api.onchange('product_id')
def onchange_product(self):
self.cost = self.product_id.standard_price
--> (xml) Put that field in view of order line.
<odoo>
<record id="sale_order_inherit_form" model="ir.ui.view">
<field name="name">sale.order.inherit.form</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form" />
<field name="arch" type="xml">
<xpath expr="//page[@name='order_lines']//tree//field[@name='name']" position="after">
<field name="cost"/>
</xpath>
</field>
</record>
</odoo>
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
1
مايو 22
|
1969 | ||
|
1
سبتمبر 25
|
2333 | ||
|
1
يونيو 25
|
2365 | ||
|
3
يوليو 25
|
3837 | ||
|
1
مايو 25
|
1961 |
First of all, thank you. Is there any way we con do this without writing code.