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

« back to all changes in this revision

Viewing changes to product_images_olbs/product.py

  • Committer: Raphaël Valyi
  • Author(s): Sharoon Thomas
  • Date: 2010-02-04 09:04:25 UTC
  • mto: (5092.4.12 mgmtsystem)
  • mto: This revision was merged to the branch mainline in revision 5094.
  • Revision ID: sharoonthomas@teagarden.in-20100204090425-zn3gyt4aof1ur1mp
[ADD]Open Labs module for Product Image gallery

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#########################################################################
 
2
# Copyright (C) 2009  Sharoon Thomas, Open Labs Business solutions      #
 
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.product"
 
21
    _columns = {
 
22
        'image_ids':fields.one2many(
 
23
                'product.images',
 
24
                'product_id',
 
25
                'Product Images'
 
26
        )
 
27
    }
 
28
product_product()
 
 
b'\\ No newline at end of file'