15355982e6ca3a7bfff475c38ff17541393c6165
[odoo/odoo.git] / addons / hr_timesheet_invoice / hr_timesheet_invoice.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import fields, osv
23
24 from tools.translate import _
25
26 class hr_timesheet_invoice_factor(osv.osv):
27     _name = "hr_timesheet_invoice.factor"
28     _description = "Invoice Rate"
29     _columns = {
30         'name': fields.char('Internal name', size=128, required=True, translate=True),
31         'customer_name': fields.char('Name', size=128, help="Label for the customer"),
32         'factor': fields.float('Discount (%)', required=True, help="Discount in percentage"),
33     }
34     _defaults = {
35         'factor': lambda *a: 0.0,
36     }
37
38 hr_timesheet_invoice_factor()
39
40
41 class account_analytic_account(osv.osv):
42     def _invoiced_calc(self, cr, uid, ids, name, arg, context=None):
43         obj_invoice = self.pool.get('account.invoice')
44         res = {}
45
46         cr.execute('SELECT account_id as account_id, l.invoice_id '
47                 'FROM hr_analytic_timesheet h LEFT JOIN account_analytic_line l '
48                     'ON (h.line_id=l.id) '
49                     'WHERE l.account_id = ANY(%s)', (ids,))
50         account_to_invoice_map = {}
51         for rec in cr.dictfetchall():
52             account_to_invoice_map.setdefault(rec['account_id'], []).append(rec['invoice_id'])
53
54         for account in self.browse(cr, uid, ids, context=context):
55             invoice_ids = filter(None, list(set(account_to_invoice_map.get(account.id, []))))
56             for invoice in obj_invoice.browse(cr, uid, invoice_ids, context=context):
57                 res.setdefault(account.id, 0.0)
58                 res[account.id] += invoice.amount_untaxed
59         for id in ids:
60             res[id] = round(res.get(id, 0.0),2)
61
62         return res
63
64     _inherit = "account.analytic.account"
65     _columns = {
66         'pricelist_id': fields.many2one('product.pricelist', 'Pricelist',
67             help="The product to invoice is defined on the employee form, the price will be deduced by this pricelist on the product."),
68         'amount_max': fields.float('Max. Invoice Price',
69             help="Keep empty if this contract is not limited to a total fixed price."),
70         'amount_invoiced': fields.function(_invoiced_calc, string='Invoiced Amount',
71             help="Total invoiced"),
72         'to_invoice': fields.many2one('hr_timesheet_invoice.factor', 'Timesheet Invocing Ratio',
73             help="Fill this field if you plan to automatically generate invoices based " \
74             "on the costs in this analytic account: timesheets, expenses, ..." \
75             "You can configure an automatic invoice rate on analytic accounts."),
76     }
77     _defaults = {
78         'pricelist_id': lambda self, cr, uid, ctx: ctx.get('pricelist_id', False),
79     }
80
81     def on_change_use_timesheets(self, cr, uid, ids, use_timesheets, context=None):
82         res = {'value': {}}
83         if use_timesheets:
84             ir_model_obj = self.pool.get('ir.model.data')
85             res['value']['to_invoice'] = ir_model_obj.get_object_reference(cr, uid, 'hr_timesheet_invoice', 'timesheet_invoice_factor1')[1]
86         return res
87
88     def on_change_partner_id(self, cr, uid, ids,partner_id, name, context=None):
89         res = super(account_analytic_account,self).on_change_partner_id(cr, uid, ids,partner_id, name, context=context)
90         part = self.pool.get('res.partner').browse(cr, uid, partner_id,context=context)
91         pricelist = part.property_product_pricelist and part.property_product_pricelist.id or False
92         if pricelist:res['value']['pricelist_id'] = pricelist
93         return res
94
95     def set_close(self, cr, uid, ids, context=None):
96         return self.write(cr, uid, ids, {'state':'close'}, context=context)
97
98     def set_cancel(self, cr, uid, ids, context=None):
99         return self.write(cr, uid, ids, {'state':'cancelled'}, context=context)
100
101     def set_open(self, cr, uid, ids, context=None):
102         return self.write(cr, uid, ids, {'state':'open'}, context=context)
103
104     def set_pending(self, cr, uid, ids, context=None):
105         return self.write(cr, uid, ids, {'state':'pending'}, context=context)
106
107 account_analytic_account()
108
109
110 class account_analytic_line(osv.osv):
111     _inherit = 'account.analytic.line'
112     _columns = {
113         'invoice_id': fields.many2one('account.invoice', 'Invoice', ondelete="set null"),
114         'to_invoice': fields.many2one('hr_timesheet_invoice.factor', 'Type of Invoicing', help="It allows to set the discount while making invoice"),
115     }
116
117     def unlink(self, cursor, user, ids, context=None):
118         return super(account_analytic_line,self).unlink(cursor, user, ids,
119                 context=context)
120
121     def write(self, cr, uid, ids, vals, context=None):
122         self._check_inv(cr, uid, ids, vals)
123         return super(account_analytic_line,self).write(cr, uid, ids, vals,
124                 context=context)
125
126     def _check_inv(self, cr, uid, ids, vals):
127         select = ids
128         if isinstance(select, (int, long)):
129             select = [ids]
130         if ( not vals.has_key('invoice_id')) or vals['invoice_id' ] == False:
131             for line in self.browse(cr, uid, select):
132                 if line.invoice_id:
133                     raise osv.except_osv(_('Error !'),
134                         _('You cannot modify an invoiced analytic line!'))
135         return True
136
137     def copy(self, cursor, user, obj_id, default=None, context=None):
138         if default is None:
139             default = {}
140         default = default.copy()
141         default.update({'invoice_id': False})
142         return super(account_analytic_line, self).copy(cursor, user, obj_id,
143                 default, context=context)
144
145 account_analytic_line()
146
147
148 class hr_analytic_timesheet(osv.osv):
149     _inherit = "hr.analytic.timesheet"
150     def on_change_account_id(self, cr, uid, ids, account_id):
151         res = {}
152         if not account_id:
153             return res
154         res.setdefault('value',{})
155         acc = self.pool.get('account.analytic.account').browse(cr, uid, account_id)
156         st = acc.to_invoice.id
157         res['value']['to_invoice'] = st or False
158         if acc.state=='pending':
159             res['warning'] = {
160                 'title': 'Warning',
161                 'message': 'The analytic account is in pending state.\nYou should not work on this account !'
162             }
163         return res
164
165     def copy(self, cursor, user, obj_id, default=None, context=None):
166         if default is None:
167             default = {}
168         default = default.copy()
169         default.update({'invoice_id': False})
170         return super(hr_analytic_timesheet, self).copy(cursor, user, obj_id,
171                 default, context=context)
172
173 hr_analytic_timesheet()
174
175 class account_invoice(osv.osv):
176     _inherit = "account.invoice"
177
178     def _get_analytic_lines(self, cr, uid, id, context=None):
179         iml = super(account_invoice, self)._get_analytic_lines(cr, uid, id, context=context)
180
181         inv = self.browse(cr, uid, [id], context=context)[0]
182         if inv.type == 'in_invoice':
183             obj_analytic_account = self.pool.get('account.analytic.account')
184             for il in iml:
185                 if il['account_analytic_id']:
186                     # *-* browse (or refactor to avoid read inside the loop)
187                     to_invoice = obj_analytic_account.read(cr, uid, [il['account_analytic_id']], ['to_invoice'], context=context)[0]['to_invoice']
188                     if to_invoice:
189                         il['analytic_lines'][0][2]['to_invoice'] = to_invoice[0]
190         return iml
191
192 account_invoice()
193
194 class account_move_line(osv.osv):
195     _inherit = "account.move.line"
196
197     def create_analytic_lines(self, cr, uid, ids, context=None):
198         res = super(account_move_line, self).create_analytic_lines(cr, uid, ids,context=context)
199         analytic_line_obj = self.pool.get('account.analytic.line')
200         for move_line in self.browse(cr, uid, ids, context=context):
201             for line in move_line.analytic_lines:
202                 toinv = line.account_id.to_invoice.id
203                 if toinv:
204                     analytic_line_obj.write(cr, uid, line.id, {'to_invoice': toinv})
205         return res
206
207 account_move_line()
208
209 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
210