~vauxoo/addons-vauxoo/8.0-import_tax_tariff-dev-yani-rev-2

« back to all changes in this revision

Viewing changes to product_images_olbs/product.py

  • Committer: Nhomar Hernandez
  • Date: 2013-04-19 20:33:12 UTC
  • mfrom: (542.1.314 addons-vauxoo)
  • Revision ID: nhomar@gmail.com-20130419203312-o35v7dn79l6vur0t
[MERGE - PEP8 AND V7-MIG] All migrated to V7 Just
improved osv.osv => osv.Model, osv.osv_memory => osv.TransientModel
import inside openerp.* enviroment
Erased class instansiation no necesarry anymore in V7
AUTOPEP8 run, Left PEP8 long lines manually.

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 osv import osv,fields
18
 
 
19
 
class product_product(osv.osv):
 
17
from openerp.osv import osv, fields
 
18
 
 
19
 
 
20
class product_product(osv.Model):
20
21
    _inherit = "product.product"
21
22
    _columns = {
22
 
        'image_ids':fields.one2many(
23
 
                'product.images',
24
 
                'product_id',
25
 
                'Product Images'
 
23
        'image_ids': fields.one2many(
 
24
        'product.images',
 
25
        'product_id',
 
26
        'Product Images'
26
27
        )
27
28
    }
28
 
product_product()
 
 
b'\\ No newline at end of file'