~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to account_tax_include/invoice_tax_incl.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

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
# $Id: account.py 1005 2005-07-25 08:41:42Z nicoe $
 
7
#
 
8
# WARNING: This program as such is intended to be used by professional
 
9
# programmers who take the whole responsability of assessing all potential
 
10
# consequences resulting from its eventual inadequacies and bugs
 
11
# End users who are looking for a ready-to-use solution with commercial
 
12
# garantees and support are strongly adviced to contract a Free Software
 
13
# Service Company
 
14
#
 
15
# This program is Free Software; you can redistribute it and/or
 
16
# modify it under the terms of the GNU General Public License
 
17
# as published by the Free Software Foundation; either version 2
 
18
# of the License, or (at your option) any later version.
 
19
#
 
20
# This program is distributed in the hope that it will be useful,
 
21
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
22
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
23
# GNU General Public License for more details.
 
24
#
 
25
# You should have received a copy of the GNU General Public License
 
26
# along with this program; if not, write to the Free Software
 
27
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
28
#
 
29
##############################################################################
 
30
 
 
31
import time
 
32
import netsvc
 
33
from osv import fields, osv
 
34
import ir
 
35
 
 
36
class account_invoice(osv.osv):
 
37
        def _amount_untaxed(self, cr, uid, ids, prop, unknow_none,unknow_dict):
 
38
                ti = []
 
39
                for inv in self.read(cr, uid, ids, ['price_type']):
 
40
                        if inv['price_type']=='tax_included':
 
41
                                ti.append(inv['id'])
 
42
                id_set=",".join(map(str,ids))
 
43
                cr.execute("SELECT s.id,COALESCE(SUM(l.price_unit*l.quantity*(100.0-l.discount))/100.0,0)::decimal(16,2) AS amount FROM account_invoice s LEFT OUTER JOIN account_invoice_line l ON (s.id=l.invoice_id) WHERE s.id IN ("+id_set+") GROUP BY s.id ")
 
44
                res=dict(cr.fetchall())
 
45
                if len(ti):
 
46
                        tax = self._amount_tax(cr, uid, ti, prop, unknow_none,unknow_dict)
 
47
                        for id in ti:
 
48
                                res[id] = res[id] - tax.get(id,0.0)
 
49
                return res
 
50
 
 
51
        def _amount_total(self, cr, uid, ids, prop, unknow_none,unknow_dict):
 
52
                ti = []
 
53
                for inv in self.read(cr, uid, ids, ['price_type']):
 
54
                        if inv['price_type']=='tax_excluded':
 
55
                                ti.append(inv['id'])
 
56
                id_set=",".join(map(str,ids))
 
57
                cr.execute("SELECT s.id,COALESCE(SUM(l.price_unit*l.quantity*(100.0-l.discount))/100.0,0)::decimal(16,2) AS amount FROM account_invoice s LEFT OUTER JOIN account_invoice_line l ON (s.id=l.invoice_id) WHERE s.id IN ("+id_set+") GROUP BY s.id ")
 
58
                res=dict(cr.fetchall())
 
59
                if len(ti):
 
60
                        tax = self._amount_tax(cr, uid, ti, prop, unknow_none,unknow_dict)
 
61
                        for id in ti:
 
62
                                res[id] = res[id] + tax.get(id,0.0)
 
63
                return res
 
64
 
 
65
        _inherit = "account.invoice"
 
66
        _columns = {
 
67
                'price_type': fields.selection([
 
68
                        ('tax_included','Tax included'),
 
69
                        ('tax_excluded','Tax excluded')
 
70
                ], 'Price method', required=True),
 
71
                'amount_untaxed': fields.function(_amount_untaxed, method=True, string='Untaxed Amount'),
 
72
                'amount_total': fields.function(_amount_total, method=True, string='Total'),
 
73
        }
 
74
        _defaults = {
 
75
                'price_type': lambda *a: 'tax_excluded',
 
76
        }
 
77
account_invoice()
 
78
 
 
79
class account_invoice_line(osv.osv):
 
80
        _inherit = "account.invoice.line"
 
81
 
 
82
        #
 
83
        # Compute with VAT invluded in the price
 
84
        #
 
85
        def move_line_get(self, cr, uid, invoice_id, context={}):
 
86
                inv = self.pool.get('account.invoice').browse(cr, uid, invoice_id)
 
87
                if inv.price_type=='tax_excluded':
 
88
                        return super(account_invoice_line,self).move_line_get(cr, uid, invoice_id)
 
89
 
 
90
                res = []
 
91
                tax_grouped = {}
 
92
                tax_obj = self.pool.get('account.tax')
 
93
                for line in inv.invoice_line:
 
94
                        res.append( {
 
95
                                'type':'src', 
 
96
                                'name':line.name, 
 
97
                                'price_unit':line.price_unit, 
 
98
                                'quantity':line.quantity, 
 
99
                                'price':round(line.quantity*line.price_unit * (1.0- (line.discount or 0.0)/100.0),2),
 
100
                                'account_id':line.account_id.id,
 
101
                                'tax_amount': 0.0
 
102
                        })
 
103
                        for tax2 in line.invoice_line_tax_id:
 
104
                                for tax in tax_obj.compute_inv(cr, uid, [tax2.id], line.price_unit, line.quantity, inv.address_invoice_id.id):
 
105
                                        tax['amount'] = round(tax['amount']*(1.0- (line['discount'] or 0.0)/100.0),2)
 
106
                                        tax['sequence'] = tax2.sequence
 
107
 
 
108
                                        res[-1]['tax_amount'] += (line['price_unit'] * line['quantity'] * (1.0- (line['discount'] or 0.0)/100.0) * tax2.base_sign)
 
109
                                        #
 
110
                                        # Setting the tax account and amount for the line
 
111
                                        #
 
112
                                        if inv.type in ('out_invoice','in_refund'):
 
113
                                                res[-1]['tax_code_id'] = tax2.base_code_id.id
 
114
                                        else:
 
115
                                                res[-1]['tax_code_id'] = tax2.ref_base_code_id.id
 
116
 
 
117
                                        if inv.type in ('out_invoice','in_refund'):
 
118
                                                tax['account_id'] = tax['account_collected_id'] or line.account_id.id
 
119
                                        else:
 
120
                                                tax['account_id'] = tax['account_paid_id'] or line.account_id.id
 
121
                                        #
 
122
                                        # Revoir la cl�: tax.id ?
 
123
                                        #
 
124
                                        key = (tax['id'], tax['account_id'])
 
125
 
 
126
                                        res[-1]['price'] -= tax['amount']
 
127
                                        res[-1]['tax_amount'] -= (tax['amount']* tax2.base_sign)
 
128
                                        if not key in tax_grouped:
 
129
                                                tax_grouped[key] = tax
 
130
                                                tax_grouped[key]['base'] = res[-1]['price']
 
131
                                        else:
 
132
                                                tax_grouped[key]['amount'] += tax['amount']
 
133
                                                tax_grouped[key]['base'] += res[-1]['price']
 
134
                # delete automatic tax lines for this invoice
 
135
                cr.execute("DELETE FROM account_invoice_tax WHERE NOT manual AND invoice_id=%d", (invoice_id,))
 
136
                self.move_line_tax_create(cr, uid, inv, tax_grouped, context)
 
137
                return res
 
138
account_invoice_line()