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

« back to all changes in this revision

Viewing changes to account_activable/account_activable.py

  • Committer: matthieu.choplin at msf
  • Date: 2012-08-30 07:48:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: matthieu.choplin@geneva.msf.org-20120830074800-l442bu42mt0yzutn
[uf-1374]- change the write and create by an _sql_constraint on the financing contract check dates

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 MSF, TeMPO consulting
 
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
import datetime
 
23
from dateutil.relativedelta import relativedelta
 
24
from osv import fields, osv
 
25
from tools.translate import _
 
26
 
 
27
class account_account_activable(osv.osv):
 
28
    _inherit = 'account.account'
 
29
    
 
30
    '''
 
31
        To create a activity period, 2 new fields are created, and are NOT linked to the
 
32
        'active' field, since the behaviors are too different.
 
33
    '''
 
34
    _columns = {
 
35
        'activation_date': fields.date('Active from', required=True),
 
36
        'inactivation_date': fields.date('Inactive from'),
 
37
        'note': fields.char('Note', size=160),
 
38
    }
 
39
    
 
40
    _defaults ={
 
41
        'activation_date': lambda *a: (datetime.datetime.today() + relativedelta(months=-3)).strftime('%Y-%m-%d')
 
42
    }
 
43
    
 
44
    def _check_date(self, vals):
 
45
        if 'inactivation_date' in vals and vals['inactivation_date'] is not False:
 
46
            if vals['inactivation_date'] <= datetime.date.today().strftime('%Y-%m-%d'):
 
47
                 # validate the date (must be > today)
 
48
                 raise osv.except_osv(_('Warning !'), _('You cannot set an inactivity date lower than tomorrow!'))
 
49
            elif 'activation_date' in vals and not vals['activation_date'] < vals['inactivation_date']:
 
50
                # validate that activation date 
 
51
                raise osv.except_osv(_('Warning !'), _('Activation date must be lower than inactivation date!'))
 
52
    
 
53
    def create(self, cr, uid, vals, context=None):
 
54
        self._check_date(vals)
 
55
        return super(account_account_activable, self).create(cr, uid, vals, context=context)
 
56
    
 
57
    def write(self, cr, uid, ids, vals, context=None):
 
58
        self._check_date(vals)
 
59
        return super(account_account_activable, self).write(cr, uid, ids, vals, context=context)
 
60
 
 
61
    def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False):
 
62
        if not context:
 
63
            context = {}
 
64
        if context.get('filter_inactive_accounts'):
 
65
            args.append(('activation_date', '<=', datetime.date.today().strftime('%Y-%m-%d')))
 
66
            args.append('|')
 
67
            args.append(('inactivation_date', '>', datetime.date.today().strftime('%Y-%m-%d')))
 
68
            args.append(('inactivation_date', '=', False))
 
69
            
 
70
        return super(account_account_activable, self).search(cr, uid, args, offset, limit,
 
71
                order, context=context, count=count)
 
72
            
 
73
            
 
74
    
 
75
account_account_activable()
 
76
 
 
77
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: