[IMP] hr_expense: Small change rename Paid to done as we are not paying the expence on the click of Generate Accounting Entries button

bzr revid: psi@tinyerp.com-20120730101519-qq7bs1s5cpfc3vbf
This commit is contained in:
Purnendu Singh (OpenERP) 2012-07-30 15:45:19 +05:30
parent 6079bbff19
commit 9b9e5f1349
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', 'Paid'),
('done', 'Done'),
],
'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 \'Paid\'.'),
\nIf the admin accepts it, the status is \'Accepted\'.\n If a receipt is made for the expense request, the status is \'Done\'.'),
}
_defaults = {
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'hr.employee', context=c),