~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to unifield_setup/installer/payroll.py

  • Committer: Quentin THEURET
  • Date: 2011-11-30 13:31:37 UTC
  • mto: This revision was merged to the branch mainline in revision 515.
  • Revision ID: qt@tempo-consulting.fr-20111130133137-mdf2fp6hkqmwbppn
UF-647 [ADD] Added a line in Purchase Order to have information about international transport costs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
##############################################################################
3
 
#
4
 
#    OpenERP, Open Source Management Solution
5
 
#    Copyright (C) 2011 TeMPO Consulting, MSF
6
 
#
7
 
#    This program is free software: you can redistribute it and/or modify
8
 
#    it under the terms of the GNU Affero General Public License as
9
 
#    published by the Free Software Foundation, either version 3 of the
10
 
#    License, or (at your option) any later version.
11
 
#
12
 
#    This program is distributed in the hope that it will be useful,
13
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
#    GNU Affero General Public License for more details.
16
 
#
17
 
#    You should have received a copy of the GNU Affero General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
20
 
##############################################################################
21
 
 
22
 
from osv import osv
23
 
from osv import fields
24
 
 
25
 
from tools.translate import _
26
 
 
27
 
 
28
 
class payroll_setup(osv.osv_memory):
29
 
    _name = 'payroll.setup'
30
 
    _inherit = 'res.config'
31
 
    
32
 
    _columns = {
33
 
        'payroll_ok': fields.boolean(string='Does the system manage Payrolls import from Homere ?'),
34
 
    }
35
 
    
36
 
    def default_get(self, cr, uid, fields, context=None):
37
 
        '''
38
 
        Display the default value for payroll
39
 
        '''
40
 
        setup_id = self.pool.get('unifield.setup.configuration').get_config(cr, uid)
41
 
        res = super(payroll_setup, self).default_get(cr, uid, fields, context=context)
42
 
        
43
 
        res['payroll_ok'] = setup_id.payroll_ok
44
 
        
45
 
        return res
46
 
        
47
 
    
48
 
    def execute(self, cr, uid, ids, context=None):
49
 
        '''
50
 
        Fill the payroll_ok field and active/de-activate the feature
51
 
        '''
52
 
        assert len(ids) == 1, "We should only get one object from the form"
53
 
        payload = self.browse(cr, uid, ids[0], context=context)
54
 
        
55
 
        setup_obj = self.pool.get('unifield.setup.configuration')
56
 
        setup_id = setup_obj.get_config(cr, uid)
57
 
 
58
 
        # Get menus
59
 
        payroll_ids = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'msf_homere_interface', 'menu_finance_payroll')[1]
60
 
        not_payroll_ids = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'msf_homere_interface', 'import_nat_staff')[1]
61
 
        
62
 
        # Write changes
63
 
        if not payload.payroll_ok:
64
 
            self.pool.get('ir.ui.menu').write(cr, uid, payroll_ids, {'active': False}, context=context)
65
 
            self.pool.get('ir.ui.menu').write(cr, uid, not_payroll_ids, {'active': True}, context=context)
66
 
        else:
67
 
            self.pool.get('ir.ui.menu').write(cr, uid, payroll_ids, {'active': True}, context=context)
68
 
            self.pool.get('ir.ui.menu').write(cr, uid, not_payroll_ids, {'active': False}, context=context)
69
 
    
70
 
        setup_obj.write(cr, uid, [setup_id.id], {'payroll_ok': payload.payroll_ok}, context=context)
71
 
        
72
 
payroll_setup()