How could you change your position the field customer(is customer),that is in Other infomation of Customers, too put it after the client's name
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
2
Replies
3532
Views
Hi,
Inorder to change the position of a field you need to inherit the original view where the field is defined the give the code as follows
<field name='partner_id' position ="after">
#redefine the field to be reposition
<field name='is_customer' />
</field>
If this doesn't work then replace the sheet and in that just reposition the field
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
in order to change the position, you need to first replace the field with xpath and then add the field after desired field/group/page