1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2011 MSF, TeMPO consulting
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import datetime
from dateutil.relativedelta import relativedelta
from osv import fields, osv
from tools.translate import _
class account_account_activable(osv.osv):
_inherit = 'account.account'
'''
To create a activity period, 2 new fields are created, and are NOT linked to the
'active' field, since the behaviors are too different.
'''
_columns = {
'activation_date': fields.date('Active from', required=True),
'inactivation_date': fields.date('Inactive from'),
'note': fields.char('Note', size=160),
}
_defaults ={
'activation_date': lambda *a: (datetime.datetime.today() + relativedelta(months=-3)).strftime('%Y-%m-%d')
}
def _check_date(self, vals):
if 'inactivation_date' in vals and vals['inactivation_date'] is not False:
if vals['inactivation_date'] <= datetime.date.today().strftime('%Y-%m-%d'):
# validate the date (must be > today)
raise osv.except_osv(_('Warning !'), _('You cannot set an inactivity date lower than tomorrow!'))
elif 'activation_date' in vals and not vals['activation_date'] < vals['inactivation_date']:
# validate that activation date
raise osv.except_osv(_('Warning !'), _('Activation date must be lower than inactivation date!'))
def create(self, cr, uid, vals, context=None):
self._check_date(vals)
return super(account_account_activable, self).create(cr, uid, vals, context=context)
def write(self, cr, uid, ids, vals, context=None):
self._check_date(vals)
return super(account_account_activable, self).write(cr, uid, ids, vals, context=context)
def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False):
if not context:
context = {}
if context.get('filter_inactive_accounts'):
args.append(('activation_date', '<=', datetime.date.today().strftime('%Y-%m-%d')))
args.append('|')
args.append(('inactivation_date', '>', datetime.date.today().strftime('%Y-%m-%d')))
args.append(('inactivation_date', '=', False))
return super(account_account_activable, self).search(cr, uid, args, offset, limit,
order, context=context, count=count)
account_account_activable()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|