[FIX] l10n_in_hr_payroll: Add default of DA to company with true value

bzr revid: mra@tinyerp.com-20120702093815-oowniwkm5yk2n0eq
This commit is contained in:
Mustufa Rangwala (OpenERP) 2012-07-02 15:08:15 +05:30
parent c97219fbbd
commit 45136ad569
1 changed files with 3 additions and 0 deletions

View File

@ -247,6 +247,9 @@ class res_company(osv.osv):
_columns = {
'dearness_allowance': fields.boolean('Dearness Allowance', help="Check this box if your company provide Dearness Allowance to employee")
}
_defaults = {
'dearness_allowance': True,
}
res_company()