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

« back to all changes in this revision

Viewing changes to product_m2mcategories/product.py

  • Committer: Sharoon Thomas
  • Date: 2009-08-16 04:28:55 UTC
  • mto: (3589.29.29 trunk-extra-addons)
  • mto: This revision was merged to the branch mainline in revision 3768.
  • Revision ID: sharoonthomas@teagarden.in-20090816042855-7cpmh10wwfphfbly
[ADD]product_m2mcategories:Allows for provision of multiple categories for a single product

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#########################################################################
 
2
# Copyright (C) 2009  Sharoon Thomas & Open ERP Community               #
 
3
#                                                                       #
 
4
#This program is free software: you can redistribute it and/or modify   #
 
5
#it under the terms of the GNU General Public License as published by   #
 
6
#the Free Software Foundation, either version 3 of the License, or      #
 
7
#(at your option) any later version.                                    #
 
8
#                                                                       #
 
9
#This program is distributed in the hope that it will be useful,        #
 
10
#but WITHOUT ANY WARRANTY; without even the implied warranty of         #
 
11
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          #
 
12
#GNU General Public License for more details.                           #
 
13
#                                                                       #
 
14
#You should have received a copy of the GNU General Public License      #
 
15
#along with this program.  If not, see <http://www.gnu.org/licenses/>.  #
 
16
#########################################################################
 
17
from osv import osv,fields
 
18
 
 
19
class product_product(osv.osv):
 
20
    _inherit = "product.template"
 
21
    _columns = {
 
22
        'categ_id': fields.many2one('product.category','Pricing/Primary Category',change_default=True),
 
23
        'categ_ids': fields.many2many('product.category','product_categ_rel','product_id','categ_id','Product Categories')
 
24
    }
 
25
product_product()
 
 
b'\\ No newline at end of file'