is there any way to put two fields inside the same column in the tree view in odoo 15?
| Columns |
|Field1 Field2 |
the two fields are different [type]
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
is there any way to put two fields inside the same column in the tree view in odoo 15?
| Columns |
|Field1 Field2 |
the two fields are different [type]
Hi Rguibi,
You can create a computing field and compute the value from the other fields two fields and display the value in this.
Please check code in comment.
I hope this will help you.
Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari
Check the below example:
class Product(models.Model):
_name = 'product.product'
name = fields.Char()
price = fields.Char()
prod_name = fields.Char(compute="_compute_product_name", string="Product Name")
def _compute_product_name(self):
for rec in self:
rec.prod_name = rec.name + " " + rec.price
In tree view you can add a field like this:
<tree>
<field name="prod_name" />
</tree>
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Oct 24
|
3 | ||
|
5
Nov 23
|
40237 | ||
Create dynamic tree view
Solved
|
|
3
Sep 23
|
7663 | |
|
2
Jan 24
|
2313 | ||
|
1
Jun 22
|
10913 |