how i can arrange the suppliers by category
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project
- MRP
This question has been flagged
2
Replies
4769
Views
Hi Sakher,
Try Following,
class res_partner(osv.osv):
_inherit = 'res.partner'
_order = 'category_id'
you can also arrange suppliers by ascending order or by descending order.
class res_partner(osv.osv):
_inherit = 'res.partner'
_order = 'category_id desc'
Hope it work for you.
thanx for reply,,
the problem exactly.. if i made anew category for supplier,, i write a wrong name,,
how i can change the name,, or change the mother of category ? i work in openerp 7
i cant understand your requirement. please explain me exactly your problem.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Nov 22
|
3559 | ||
|
1
Dec 24
|
2382 | ||
|
2
Nov 23
|
3008 | ||
|
0
Apr 23
|
1634 | ||
|
0
Nov 21
|
2078 |