~openerp-commiter/openobject-addons/stable-sja-branch

« back to all changes in this revision

Viewing changes to l10n_fr_pcg/l10n_fr.py

  • Committer: sja-axelor
  • Date: 2009-10-13 09:52:57 UTC
  • Revision ID: suniljagyasi@gmail.com-20091013095257-8u26ww0r20z9y6ey
add

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
from mx import DateTime
 
24
import time
 
25
 
 
26
from osv import fields, osv
 
27
import pooler
 
28
 
 
29
 
 
30
class l10n_fr_report(osv.osv):
 
31
    _name = 'l10n.fr.report'
 
32
    _description = 'Report for l10n_fr'
 
33
    _columns = {
 
34
        'code': fields.char('Code', size=64),
 
35
        'name': fields.char('Name', size=128),
 
36
        'line_ids': fields.one2many('l10n.fr.line', 'report_id', 'Lines'),
 
37
    }
 
38
    _sql_constraints = [
 
39
                ('code_uniq', 'unique (code)','The code report must be unique !')
 
40
        ]
 
41
l10n_fr_report()
 
42
 
 
43
class l10n_fr_line(osv.osv):
 
44
    _name = 'l10n.fr.line'
 
45
    _description = 'Report Lines for l10n_fr'
 
46
    _columns = {
 
47
        'code': fields.char('Variable Name', size=64),
 
48
        'definition': fields.char('Definition', size=512),
 
49
        'name': fields.char('Name', size=256),
 
50
        'report_id': fields.many2one('l10n.fr.report', 'Report'),
 
51
    }
 
52
    _sql_constraints = [
 
53
            ('code_uniq', 'unique (code)', 'The variable name must be unique !')
 
54
    ]
 
55
l10n_fr_line()
 
56
 
 
57
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: