~zaber/openobject-addons/stable_5.0-extra-addons

« back to all changes in this revision

Viewing changes to l10n_fr/l10n_fr.py

  • Committer: Fabien Pinckaers
  • Date: 2008-06-16 10:20:34 UTC
  • Revision ID: fp@tinyerp.com-c3cc151f82ac4ddfb601014776bad78e0cb385e1
NEW L10N_FR

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2008 JAILLET Simon - CrysaLEAD - www.crysalead.fr
 
4
#
 
5
# WARNING: This program as such is intended to be used by professional
 
6
# programmers who take the whole responsability of assessing all potential
 
7
# consequences resulting from its eventual inadequacies and bugs
 
8
# End users who are looking for a ready-to-use solution with commercial
 
9
# garantees and support are strongly adviced to contract a Free Software
 
10
# Service Company
 
11
#
 
12
# This program is Free Software; you can redistribute it and/or
 
13
# modify it under the terms of the GNU General Public License
 
14
# as published by the Free Software Foundation; either version 2
 
15
# of the License, or (at your option) any later version.
 
16
#
 
17
# This program is distributed in the hope that it will be useful,
 
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
# GNU General Public License for more details.
 
21
#
 
22
# You should have received a copy of the GNU General Public License
 
23
# along with this program; if not, write to the Free Software
 
24
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
25
#
 
26
##############################################################################
 
27
 
 
28
from osv import fields, osv
 
29
 
 
30
class account_tax_code(osv.osv):
 
31
        _name = 'account.tax.code'
 
32
        _inherit = 'account.tax.code'
 
33
        _columns = {
 
34
                'code': fields.char('Case Code', size=256),
 
35
        }
 
36
account_tax_code()
 
37
 
 
38
 
 
39
class l10n_fr_report(osv.osv):
 
40
        _name = 'l10n.fr.report'
 
41
        _columns = {
 
42
                'code': fields.char('Code', size=64),
 
43
                'name': fields.char('Name', size=128),
 
44
                'line_ids': fields.one2many('l10n.fr.line', 'report_id', 'Lines'),
 
45
        }
 
46
        _sql_constraints = [
 
47
                ('code_uniq', 'unique (code)','The code report must be unique !')
 
48
        ]
 
49
l10n_fr_report()
 
50
 
 
51
class l10n_fr_line(osv.osv):
 
52
        _name = 'l10n.fr.line'
 
53
        _columns = {
 
54
                'code': fields.char('Variable Name', size=64),
 
55
                'definition': fields.char('Definition', size=512),
 
56
                'name': fields.char('Name', size=256),
 
57
                'report_id': fields.many2one('l10n.fr.report', 'Report'),
 
58
        }
 
59
        _sql_constraints = [
 
60
                ('code_uniq', 'unique (code)','The variable name must be unique !')
 
61
        ]
 
62
l10n_fr_line()
 
63