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

« back to all changes in this revision

Viewing changes to bookstore/invoice.py

bugfix in overlay creation system

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2004-2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
5
#
 
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
 
11
# Service Company
 
12
#
 
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.
 
17
#
 
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.
 
22
#
 
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.
 
26
#
 
27
##############################################################################
 
28
 
 
29
from osv import fields,osv
 
30
 
 
31
class account_invoice(osv.osv):
 
32
 
 
33
    _inherit = "account.invoice"
 
34
    _columns = {
 
35
        'export_date': fields.datetime("Export time"),
 
36
        }
 
37
 
 
38
    _defaults = {
 
39
        'price_type': lambda *a: 'tax_included',
 
40
    }
 
41
 
 
42
 
 
43
    def _refund_cleanup_lines(self, lines):
 
44
        for line in lines:
 
45
            del line['id']
 
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]
 
51
            if 'uos_id' in line:
 
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)
 
60
 
 
61
 
 
62
account_invoice()
 
63
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
64