~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to product_images_olbs/product.py

  • Committer: Jose Antonio
  • Date: 2012-06-13 22:24:45 UTC
  • mto: This revision was merged to the branch mainline in revision 312.
  • Revision ID: jose@vauxoo.com-20120613222445-ybndycdaaw2puqyz

[ADD] Add wizard to add incidences from xls field

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#########################################################################
2
2
# Copyright (C) 2009  Sharoon Thomas, Open Labs Business solutions      #
3
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      #
 
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
7
#(at your option) any later version.                                    #
8
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.                           #
 
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
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/>.  #
 
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
16
#########################################################################
17
 
from openerp.osv import osv, fields
18
 
 
19
 
 
20
 
class product_product(osv.Model):
 
17
from osv import osv,fields
 
18
 
 
19
class product_product(osv.osv):
21
20
    _inherit = "product.product"
22
21
    _columns = {
23
 
        'image_ids': fields.one2many(
24
 
        'product.images',
25
 
        'product_id',
26
 
        'Product Images'
 
22
        'image_ids':fields.one2many(
 
23
                'product.images',
 
24
                'product_id',
 
25
                'Product Images'
27
26
        )
28
27
    }
 
28
product_product()
 
 
b'\\ No newline at end of file'