Skip to content

Commit

Permalink
[FIX] base: sort ir.actions.act_window.view records deterministically
Browse files Browse the repository at this point in the history
  • Loading branch information
KangOl committed Jan 25, 2018
1 parent 25849e9 commit 222cadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openerp/addons/base/ir/ir_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ class ir_actions_act_window_view(osv.osv):
_name = 'ir.actions.act_window.view'
_table = 'ir_act_window_view'
_rec_name = 'view_id'
_order = 'sequence'
_order = 'sequence,id'
_columns = {
'sequence': fields.integer('Sequence'),
'view_id': fields.many2one('ir.ui.view', 'View'),
Expand Down

0 comments on commit 222cadd

Please sign in to comment.