1
# -*- encoding: utf-8 -*-
1
2
##############################################################################
3
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
5
# $Id: partner.py 1007 2005-07-25 13:18:09Z kayhman $
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
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.
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.
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
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.
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.
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/>.
28
21
##############################################################################
35
28
class account_invoice_line(osv.osv):
36
_name = "account.invoice.line"
37
_inherit = "account.invoice.line"
39
'cost_price': fields.float('Cost Price', digits=(16, 2)),
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"
32
'cost_price': fields.float('Cost Price', digits=(16, 2)),
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)
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()
48
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: