[FIX] crm: Change the sequence of the priorities

bzr revid: stephane@openerp.com-20100428072002-eu0s9bbx1x0um3jc
This commit is contained in:
Stephane Wirtel 2010-04-28 09:20:02 +02:00
parent 170bc320cc
commit fd822d8b1d
1 changed files with 5 additions and 5 deletions

View File

@ -34,15 +34,15 @@ AVAILABLE_STATES = [
('open', 'Open'),
('cancel', 'Cancelled'),
('done', 'Closed'),
('pending', 'Pending')
('pending', 'Pending'),
]
AVAILABLE_PRIORITIES = [
('5', 'Lowest'),
('4', 'Low'),
('3', 'Normal'),
('1', 'Highest'),
('2', 'High'),
('1', 'Highest')
('3', 'Normal'),
('4', 'Low'),
('5', 'Lowest'),
]
class crm_case_section(osv.osv):