~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to payroll/payroll-4.0.3/setup/pay_elements.py

merging new development from indian accounting

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
1
2
##############################################################################
2
3
#
3
4
# Copyright (c) 2005-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
50
51
        }
51
52
    _defaults = {
52
53
            'attendance' : lambda *a: True,
53
 
                        'formulae' : lambda *a: 'percent',
 
54
            'formulae' : lambda *a: 'percent',
54
55
        }
55
56
    _order = 'name desc'
56
57
    def onchange_percent(self, cr, uid, ids, percent):
77
78
payroll_setup_payelements()
78
79
 
79
80
 
 
81
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
82