removed bad code
[odoo/odoo.git] / bin / addons / base / ir / ir_sequence.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 import time
24 from osv import fields,osv
25 import pooler
26
27 class ir_sequence_type(osv.osv):
28     _name = 'ir.sequence.type'
29     _columns = {
30         'name': fields.char('Sequence Name',size=64, required=True),
31         'code': fields.char('Sequence Code',size=32, required=True),
32     }
33 ir_sequence_type()
34
35 def _code_get(self, cr, uid, context={}):
36     cr.execute('select code, name from ir_sequence_type')
37     return cr.fetchall()
38
39 class ir_sequence(osv.osv):
40     _name = 'ir.sequence'
41     _columns = {
42         'name': fields.char('Sequence Name',size=64, required=True),
43         'code': fields.selection(_code_get, 'Sequence Code',size=64, required=True),
44         'active': fields.boolean('Active'),
45         'prefix': fields.char('Prefix',size=64),
46         'suffix': fields.char('Suffix',size=64),
47         'number_next': fields.integer('Next Number', required=True),
48         'number_increment': fields.integer('Increment Number', required=True),
49         'padding' : fields.integer('Number padding', required=True),
50     }
51     _defaults = {
52         'active': lambda *a: True,
53         'number_increment': lambda *a: 1,
54         'number_next': lambda *a: 1,
55         'padding' : lambda *a : 0,
56     }
57
58     def _process(self, s):
59         return (s or '') % {
60             'year':time.strftime('%Y'), 
61             'month': time.strftime('%m'), 
62             'day':time.strftime('%d'),
63             'y': time.strftime('%y'),
64             'doy': time.strftime('%j'),
65             'woy': time.strftime('%W'),
66             'weekday': time.strftime('%w'),
67             'h24': time.strftime('%H'),
68             'h12': time.strftime('%I'),
69             'min': time.strftime('%M'),
70             'sec': time.strftime('%S'),
71         }
72
73     def get_id(self, cr, uid, sequence_id, test='id=%s', context=None):
74         try:
75             cr.execute('SELECT id, number_next, prefix, suffix, padding FROM ir_sequence WHERE '+test+' AND active=%s FOR UPDATE', (sequence_id, True))
76             res = cr.dictfetchone()
77             if res:
78                 cr.execute('UPDATE ir_sequence SET number_next=number_next+number_increment WHERE id=%s AND active=%s', (res['id'], True))
79                 if res['number_next']:
80                     return self._process(res['prefix']) + '%%0%sd' % res['padding'] % res['number_next'] + self._process(res['suffix'])
81                 else:
82                     return self._process(res['prefix']) + self._process(res['suffix'])
83         finally:
84             cr.commit()
85         return False
86
87     def get(self, cr, uid, code):
88         return self.get_id(cr, uid, code, test='code=%s')
89 ir_sequence()
90
91
92 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
93