[IMP] typo

bzr revid: mra@tinyerp.com-20120626060354-jyqzuxdi9y30jzr3
This commit is contained in:
Mustufa Rangwala (OpenERP) 2012-06-26 11:33:54 +05:30
parent 7b88857995
commit 1928914825
1 changed files with 3 additions and 4 deletions

View File

@ -37,10 +37,10 @@ class hr_contract(osv.osv):
"""
_inherit = 'hr.contract'
_description = 'contract'
_description = 'HR Contract'
_columns = {
'tds': fields.float('TDS', digits_compute=dp.get_precision('Payroll')),
'tds': fields.float('TDS', digits_compute=dp.get_precision('Payroll'), help="Amount for Tax Deduction at Source"),
'house_rent_income': fields.float('House Rent Income ', digits_compute=dp.get_precision('Payroll'), help="Income from house property."),
'saving_bank_account': fields.float('Saving Bank Account Income ', digits_compute=dp.get_precision('Payroll'), help="Saving income for bank account."),
'other_income': fields.float('Other Income ', digits_compute=dp.get_precision('Payroll'), help="Other income of employee."),
@ -57,7 +57,6 @@ class hr_contract(osv.osv):
hr_contract()
class hr_employee(osv.osv):
'''
Employee's Join date allows to compute total working
@ -113,7 +112,7 @@ class payroll_advice(osv.osv):
_columns = {
'name':fields.char('Name', size=32, readonly=True, required=True, states={'draft': [('readonly', False)]},),
'note': fields.text('Description'),
'date': fields.date('Date', readonly=True, states={'draft': [('readonly', False)]}, help="Date is used to search Payslips."),
'date': fields.date('Date', readonly=True, states={'draft': [('readonly', False)]}, help="Advice Date is used to search Payslips."),
'state':fields.selection([
('draft','Draft'),
('confirm','Confirm'),