~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to chemical/product/risque_securite_danger.py

  • Committer: Naresh Choksy
  • Date: 2009-02-10 11:40:11 UTC
  • mto: This revision was merged to the branch mainline in revision 3554.
  • Revision ID: nch@tinyerp.com-20090210114011-lyss5r18jxbjzw9e
Chemical:made  compatible to 5.0

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
 
 
24
import datetime
 
25
import time
 
26
import netsvc
 
27
from osv import fields,osv
 
28
import ir
 
29
 
 
30
# Definition of classes to manage risks, and Safety Hazards
 
31
 
 
32
class product_risque(osv.osv):
 
33
        _description='Risques Produits'
 
34
        _name = 'product.risque'
 
35
        _columns = {
 
36
                'name' : fields.char('Risque', size=64, required=True),
 
37
                'libelle' : fields.char('libelle', size=256, required=True),
 
38
        }
 
39
        _order = 'name'
 
40
product_risque()
 
41
 
 
42
 
 
43
class product_securite(osv.osv):
 
44
        _description='Securite Produits'
 
45
        _name = 'product.securite'
 
46
        _columns = {
 
47
                'name' : fields.char('Security', size=64, required=True),
 
48
                'libelle' : fields.char('libelle', size=256, required=True),
 
49
        }
 
50
        _order = 'name'
 
51
product_securite()
 
52
 
 
53
class product_danger(osv.osv):
 
54
        _description='Dangers Product'
 
55
        _name = 'product.danger'
 
56
        _columns = {
 
57
                'name' : fields.char('Danger', size=64, required=True),
 
58
                'libelle' : fields.char('libelle', size=256, required=True),
 
59
        }
 
60
        _order = 'name'
 
61
product_danger()
 
62
 
 
63
#Added 3 fields many2many in class product.product
 
64
 
 
65
class product_product(osv.osv):
 
66
        _name = 'product.product'
 
67
        _inherit = 'product.product'
 
68
        _columns = {
 
69
                'risque_ids': fields.many2many('product.risque', 'product_risque_rel', 'product_id','risque_id','Risk products'),
 
70
                'securite_ids': fields.many2many('product.securite', 'product_securite_rel', 'product_id','securite_id','Security'),
 
71
                'danger_ids': fields.many2many('product.danger', 'product_danger_rel', 'product_id','danger_id','Dangers products'),
 
72
        }
 
73
product_product()
 
74
 
 
75
 
 
76
 
 
77
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
78
 
 
79
 
 
80
 
 
81