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

« back to all changes in this revision

Viewing changes to sale_bundle_product/sale.py

  • Committer: Albert Cervera i Areny
  • Date: 2011-06-14 09:51:35 UTC
  • mfrom: (5345.1.165 openobject-addons)
  • Revision ID: albert@nan-tic.com-20110614095135-1x3p6tmil5lxkl9b
Merge and add nan_remove_default_filters

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
#################################################################################
 
3
#                                                                               #
 
4
#    sale_bundle_product for OpenERP                                          #
 
5
# Copyright (c) 2011 CamptoCamp. All rights reserved. @author Joel Grand-Guillaume #
 
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 sale_order_line(osv.osv):
 
27
    
 
28
    _inherit = "sale.order.line"
 
29
    
 
30
 
 
31
    _columns = {
 
32
        'so_line_item_set_ids':fields.many2many('sale.order.line.item.set', 'so_line_so_item_set_rel','sale_order_line_id', 'so_item_set_id','Choosen configurtion'),
 
33
    }
 
34
 
 
35
 
 
36
sale_order_line()
 
37