~angelmoya/product-extra-addons/nan_product_pack

« back to all changes in this revision

Viewing changes to product_custom_attributes/ir_model.py

  • Committer: Benoit Guillot
  • Date: 2012-08-03 14:33:51 UTC
  • Revision ID: benoit.guillot@akretion.com.br-20120803143351-bft9u8x3cqlduuy3
[ADD] module product_custom_attributes: manage the product attributes and their options

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
###############################################################################
 
3
#                                                                             #
 
4
#   product_custom_attributes for OpenERP                                      #
 
5
#   Copyright (C) 2011 Akretion Benoît GUILLOT <benoit.guillot@akretion.com>  #
 
6
#                                                                             #
 
7
#   This program is free software: you can redistribute it and/or modify      #
 
8
#   it under the terms of the GNU Affero General Public License as            #
 
9
#   published by the Free Software Foundation, either version 3 of the        #
 
10
#   License, or (at your option) any later version.                           #
 
11
#                                                                             #
 
12
#   This program is distributed in the hope that it will be useful,           #
 
13
#   but WITHOUT ANY WARRANTY; without even the implied warranty of            #
 
14
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             #
 
15
#   GNU Affero General Public License for more details.                       #
 
16
#                                                                             #
 
17
#   You should have received a copy of the GNU Affero General Public License  #
 
18
#   along with this program.  If not, see <http://www.gnu.org/licenses/>.     #
 
19
#                                                                             #
 
20
###############################################################################
 
21
 
 
22
from osv import osv, fields
 
23
import netsvc
 
24
 
 
25
 
 
26
class ir_model_fields(osv.osv):
 
27
    
 
28
    _inherit = "ir.model.fields"
 
29
    
 
30
 
 
31
    _columns = {
 
32
    
 
33
    }
 
34
 
 
35
    _defaults = {
 
36
 
 
37
    }
 
38
 
 
39
    _sql_constraints = [
 
40
        ('name_model_uniq', 'unique (name, model_id)', 'The name of the field has to be uniq for a given model !'),
 
41
    ]