1
# -*- encoding: utf-8 -*-
2
##############################################################################
4
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
6
# WARNING: This program as such is intended to be used by professional
7
# programmers who take the whole responsability of assessing all potential
8
# consequences resulting from its eventual inadequacies and bugs
9
# End users who are looking for a ready-to-use solution with commercial
10
# garantees and support are strongly adviced to contract a Free Software
13
# This program is Free Software; you can redistribute it and/or
14
# modify it under the terms of the GNU General Public License
15
# as published by the Free Software Foundation; either version 2
16
# of the License, or (at your option) any later version.
18
# This program is distributed in the hope that it will be useful,
19
# but WITHOUT ANY WARRANTY; without even the implied warranty of
20
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21
# GNU General Public License for more details.
23
# You should have received a copy of the GNU General Public License
24
# along with this program; if not, write to the Free Software
25
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
##############################################################################
29
from osv import fields,osv
31
class account_invoice(osv.osv):
33
_inherit = "account.invoice"
35
'export_date': fields.datetime("Export time"),
39
'price_type': lambda *a: 'tax_included',
43
def _refund_cleanup_lines(self, lines):
46
del line['invoice_id']
47
if 'account_id' in line:
48
line['account_id'] = line.get('account_id', False) and line['account_id'][0]
49
if 'product_id' in line:
50
line['product_id'] = line.get('product_id', False) and line['product_id'][0]
52
line['uos_id'] = line.get('uos_id', False) and line['uos_id'][0]
53
if 'invoice_line_tax_id' in line:
54
line['invoice_line_tax_id'] = [(6,0, line.get('invoice_line_tax_id', [])) ]
55
if 'account_analytic_id' in line:
56
line['account_analytic_id'] = line.get('account_analytic_id', False) and line['account_analytic_id'][0]
57
if 'production_lot_id' in line:
58
line['production_lot_id'] = line.get('production_lot_id', False) and line['production_lot_id'][0]
59
return map(lambda x: (0,0,x), lines)
63
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: