[IMP] hr_expense: Small change rename Paid to done as we are not paying the expence...
authorPurnendu Singh (OpenERP) <psi@tinyerp.com>
Mon, 30 Jul 2012 10:15:19 +0000 (15:45 +0530)
committerPurnendu Singh (OpenERP) <psi@tinyerp.com>
Mon, 30 Jul 2012 10:15:19 +0000 (15:45 +0530)
bzr revid: psi@tinyerp.com-20120730101519-qq7bs1s5cpfc3vbf

addons/hr_expense/hr_expense.py

index 26bcb4d..6861696 100644 (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),