[IMP] hr_expense : Rename 'Done' status into 'Paid'.

bzr revid: mdi@tinyerp.com-20120723055033-3hg9cyflwf61ov9t
This commit is contained in:
Divyesh Makwana (Open ERP) 2012-07-23 11:20:33 +05:30
parent 73f4c519dc
commit 31673d1139
1 changed files with 2 additions and 2 deletions

View File

@ -86,10 +86,10 @@ class hr_expense_expense(osv.osv):
('cancelled', 'Refused'),
('confirm', 'Waiting Approval'),
('accepted', 'Approved'),
('done', 'Done'),
('done', 'Paid'),
],
'Status', readonly=True, help='When the expense request is created the status is \'Draft\'.\n It is confirmed by the user and request is sent to admin, the status is \'Waiting Confirmation\'.\
\nIf the admin accepts it, the status is \'Accepted\'.\n If a receipt is made for the expense request, the status is \'Done\'.'),
\nIf the admin accepts it, the status is \'Accepted\'.\n If a receipt is made for the expense request, the status is \'Paid\'.'),
}
_defaults = {
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'hr.employee', context=c),