Skip to content

Commit

Permalink
[FIX] res_partner: tags were sorted by parent name, then by id.
Browse files Browse the repository at this point in the history
Replaced by: Tags are sorted by parent name, then by name.

Closes odoo#8858
  • Loading branch information
sve-odoo authored and mart-e committed Oct 2, 2015
1 parent 41f9e79 commit 9e80b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openerp/addons/base/res/res_partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def _name_get_fnc(self, field_name, arg):
}
_parent_store = True
_parent_order = 'name'
_order = 'parent_left'
_order = 'parent_left, name'


class res_partner_title(osv.osv):
Expand Down

0 comments on commit 9e80b99

Please sign in to comment.