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

« back to all changes in this revision

Viewing changes to sale_margin/invoice_margin.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 -*-
1
2
##############################################################################
2
3
#
3
 
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
4
 
#
5
 
# $Id: partner.py 1007 2005-07-25 13:18:09Z kayhman $
6
 
#
7
 
# WARNING: This program as such is intended to be used by professional
8
 
# programmers who take the whole responsability of assessing all potential
9
 
# consequences resulting from its eventual inadequacies and bugs
10
 
# End users who are looking for a ready-to-use solution with commercial
11
 
# garantees and support are strongly adviced to contract a Free Software
12
 
# Service Company
13
 
#
14
 
# This program is Free Software; you can redistribute it and/or
15
 
# modify it under the terms of the GNU General Public License
16
 
# as published by the Free Software Foundation; either version 2
17
 
# of the License, or (at your option) any later version.
18
 
#
19
 
# This program is distributed in the hope that it will be useful,
20
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 
# GNU General Public License for more details.
23
 
#
24
 
# You should have received a copy of the GNU General Public License
25
 
# along with this program; if not, write to the Free Software
26
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
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/>.
27
20
#
28
21
##############################################################################
29
22
 
33
26
import time
34
27
 
35
28
class account_invoice_line(osv.osv):
36
 
        _name = "account.invoice.line"
37
 
        _inherit = "account.invoice.line"
38
 
        _columns = {
39
 
                'cost_price': fields.float('Cost Price', digits=(16, 2)),
40
 
        }
41
 
        def write(self, cr, uid, ids, vals, context={}):
42
 
                if 'product_id' in vals:
43
 
                        res=self.pool.get('product.product').read(cr, uid, [vals['product_id']], ['standard_price'])
44
 
                        vals['cost_price']=res[0]['standard_price']
45
 
                return super(account_invoice_line, self).write(cr, uid, ids, vals, context)
 
29
    _name = "account.invoice.line"
 
30
    _inherit = "account.invoice.line"
 
31
    _columns = {
 
32
        'cost_price': fields.float('Cost Price', digits=(16, 2)),
 
33
    }
 
34
    def write(self, cr, uid, ids, vals, context={}):
 
35
        if vals.get('product_id' , False):
 
36
            res=self.pool.get('product.product').read(cr, uid, [vals['product_id']], ['standard_price'])
 
37
            vals['cost_price']=res[0]['standard_price']
 
38
        return super(account_invoice_line, self).write(cr, uid, ids, vals, context)
46
39
 
47
 
        def create(self, cr, uid, vals, context={}):
48
 
                if 'product_id' in vals:
49
 
                        res=self.pool.get('product.product').read(cr, uid, [vals['product_id']], ['standard_price'])
50
 
                        vals['cost_price']=res[0]['standard_price']
51
 
                return super(account_invoice_line, self).create(cr, uid, vals, context)
 
40
    def create(self, cr, uid, vals, context={}):
 
41
        if vals.get('product_id',False):
 
42
            res=self.pool.get('product.product').read(cr, uid, [vals['product_id']], ['standard_price'])
 
43
            vals['cost_price']=res[0]['standard_price']
 
44
        return super(account_invoice_line, self).create(cr, uid, vals, context)
52
45
account_invoice_line()
53
46
 
54
47
 
 
48
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
49