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

« back to all changes in this revision

Viewing changes to bookstore/sale.py

  • Committer: Fabien Pinckaers
  • Date: 2008-11-12 06:43:12 UTC
  • Revision ID: fp@tinyerp.com-20081112064312-fp85io97i1e95tuz
moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution   
 
5
#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 
6
#    $Id$
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
import time
 
24
import netsvc
 
25
from osv import fields, osv
 
26
import ir
 
27
from mx import DateTime
 
28
 
 
29
class sale_order_line(osv.osv):
 
30
    _name = 'sale.order.line'
 
31
    _description = 'New Sale Order line'
 
32
    _inherit = 'sale.order.line'
 
33
 
 
34
 
 
35
    def product_id_change(self, cr, uid, ids, pricelist, product, qty=0,
 
36
            uom=False, qty_uos=0, uos=False, name='', partner_id=False,
 
37
            lang=False, update_tax=True, date_order=False):
 
38
 
 
39
 
 
40
        result = super(sale_order_line, self).product_id_change(cr, uid, ids,
 
41
            pricelist, product, qty, uom, qty_uos, uos, name, partner_id,lang,
 
42
            update_tax,date_order)
 
43
 
 
44
        if not product:
 
45
            return {'value': {'price_unit': 0.0, 'notes':'', 'weight' : 0}, 'domain':{'product_uom':[]}}
 
46
        product_res = self.pool.get('product.product').read(cr,uid,[product])[0];
 
47
        if product_res['virtual_available']>=qty and qty!=0.0:
 
48
            result['value']['type']='make_to_stock';
 
49
        return result;
 
50
sale_order_line()
 
51
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
52