[MERGE] Resynchronized with trunk.
[odoo/odoo.git] / addons / analytic / analytic.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 import time
23
24 from osv import fields, osv
25 from tools.translate import _
26 import decimal_precision as dp
27
28 class account_analytic_account(osv.osv):
29     _name = 'account.analytic.account'
30     _description = 'Analytic Account'
31
32     def _compute_level_tree(self, cr, uid, ids, child_ids, res, field_names, context=None):
33         def recursive_computation(account_id, res):
34             currency_obj = self.pool.get('res.currency')
35             account = self.browse(cr, uid, account_id)
36             for son in account.child_ids:
37                 res = recursive_computation(son.id, res)
38                 for field in field_names:
39                     if account.currency_id.id == son.currency_id.id or field=='quantity':
40                         res[account.id][field] += res[son.id][field]
41                     else:
42                         res[account.id][field] += currency_obj.compute(cr, uid, son.currency_id.id, account.currency_id.id, res[son.id][field], context=context)
43             return res
44         for account in self.browse(cr, uid, ids, context=context):
45             if account.id not in child_ids:
46                 continue
47             res = recursive_computation(account.id, res)
48         return res
49
50     def _debit_credit_bal_qtty(self, cr, uid, ids, name, arg, context=None):
51         res = {}
52         if context is None:
53             context = {}
54         child_ids = tuple(self.search(cr, uid, [('parent_id', 'child_of', ids)]))
55         for i in child_ids:
56             res[i] =  {}
57             for n in name:
58                 res[i][n] = 0.0
59
60         if not child_ids:
61             return res
62
63         where_date = ''
64         where_clause_args = [tuple(child_ids)]
65         if context.get('from_date', False):
66             where_date += " AND l.date >= %s"
67             where_clause_args  += [context['from_date']]
68         if context.get('to_date', False):
69             where_date += " AND l.date <= %s"
70             where_clause_args += [context['to_date']]
71         cr.execute("""
72               SELECT a.id,
73                      sum(
74                          CASE WHEN l.amount > 0
75                          THEN l.amount
76                          ELSE 0.0
77                          END
78                           ) as debit,
79                      sum(
80                          CASE WHEN l.amount < 0
81                          THEN -l.amount
82                          ELSE 0.0
83                          END
84                           ) as credit,
85                      COALESCE(SUM(l.amount),0) AS balance,
86                      COALESCE(SUM(l.unit_amount),0) AS quantity
87               FROM account_analytic_account a
88                   LEFT JOIN account_analytic_line l ON (a.id = l.account_id)
89               WHERE a.id IN %s
90               """ + where_date + """
91               GROUP BY a.id""", where_clause_args)
92         for ac_id, debit, credit, balance, quantity in cr.fetchall():
93             res[ac_id] = {'debit': debit, 'credit': credit, 'balance': balance, 'quantity': quantity}
94         return self._compute_level_tree(cr, uid, ids, child_ids, res, ['debit', 'credit', 'balance', 'quantity'], context)
95
96     def name_get(self, cr, uid, ids, context=None):
97         if not ids:
98             return []
99         res = []
100         for account in self.browse(cr, uid, ids, context=context):
101             data = []
102             acc = account
103             while acc:
104                 data.insert(0, acc.name)
105                 acc = acc.parent_id
106             data = ' / '.join(data)
107             res.append((account.id, data))
108         return res
109
110     def _complete_name_calc(self, cr, uid, ids, prop, unknow_none, unknow_dict):
111         res = self.name_get(cr, uid, ids)
112         return dict(res)
113
114     def _child_compute(self, cr, uid, ids, name, arg, context=None):
115         result = {}
116         if context is None:
117             context = {}
118
119         for account in self.browse(cr, uid, ids, context=context):
120             result[account.id] = map(lambda x: x.id, [child for child in account.child_ids if child.state != 'template'])
121
122         return result
123
124     def _get_analytic_account(self, cr, uid, ids, context=None):
125         company_obj = self.pool.get('res.company')
126         analytic_obj = self.pool.get('account.analytic.account')
127         accounts = []
128         for company in company_obj.browse(cr, uid, ids, context=context):
129             accounts += analytic_obj.search(cr, uid, [('company_id', '=', company.id)])
130         return accounts
131
132     def _set_company_currency(self, cr, uid, ids, name, value, arg, context=None):
133         if type(ids) != type([]):
134             ids=[ids]
135         for account in self.browse(cr, uid, ids, context=context):
136             if account.company_id:
137                 if account.company_id.currency_id.id != value:
138                     raise osv.except_osv(_('Error !'), _("If you set a company, the currency selected has to be the same as it's currency. \nYou can remove the company belonging, and thus change the currency, only on analytic account of type 'view'. This can be really usefull for consolidation purposes of several companies charts with different currencies, for example."))
139         return cr.execute("""update account_analytic_account set currency_id=%s where id=%s""", (value, account.id, ))
140
141     def _currency(self, cr, uid, ids, field_name, arg, context=None):
142         result = {}
143         for rec in self.browse(cr, uid, ids, context=context):
144             if rec.company_id:
145                 result[rec.id] = rec.company_id.currency_id.id
146             else:
147                 result[rec.id] = rec.currency_id.id
148         return result
149
150     _columns = {
151         'name': fields.char('Account Name', size=128, required=True),
152         'complete_name': fields.function(_complete_name_calc, method=True, type='char', string='Full Account Name'),
153         'code': fields.char('Account Code', size=24),
154         'type': fields.selection([('view','View'), ('normal','Normal')], 'Account Type', help='If you select the View Type, it means you won\'t allow to create journal entries using that account.'),
155         'description': fields.text('Description'),
156         'parent_id': fields.many2one('account.analytic.account', 'Parent Analytic Account', select=2),
157         'child_ids': fields.one2many('account.analytic.account', 'parent_id', 'Child Accounts'),
158         'child_complete_ids': fields.function(_child_compute, relation='account.analytic.account', method=True, string="Account Hierarchy", type='many2many'),
159         'line_ids': fields.one2many('account.analytic.line', 'account_id', 'Analytic Entries'),
160         'balance': fields.function(_debit_credit_bal_qtty, method=True, type='float', string='Balance', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')),
161         'debit': fields.function(_debit_credit_bal_qtty, method=True, type='float', string='Debit', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')),
162         'credit': fields.function(_debit_credit_bal_qtty, method=True, type='float', string='Credit', multi='debit_credit_bal_qtty', digits_compute=dp.get_precision('Account')),
163         'quantity': fields.function(_debit_credit_bal_qtty, method=True, type='float', string='Quantity', multi='debit_credit_bal_qtty'),
164         'quantity_max': fields.float('Maximum Quantity', help='Sets the higher limit of quantity of hours.'),
165         'partner_id': fields.many2one('res.partner', 'Partner'),
166         'contact_id': fields.many2one('res.partner.address', 'Contact'),
167         'user_id': fields.many2one('res.users', 'Account Manager'),
168         'date_start': fields.date('Date Start'),
169         'date': fields.date('Date End', select=True),
170         'company_id': fields.many2one('res.company', 'Company', required=False), #not required because we want to allow different companies to use the same chart of account, except for leaf accounts.
171         'state': fields.selection([('draft','Draft'),('open','Open'), ('pending','Pending'),('cancelled', 'Cancelled'),('close','Closed'),('template', 'Template')], 'State', required=True,
172                                   help='* When an account is created its in \'Draft\' state.\
173                                   \n* If any associated partner is there, it can be in \'Open\' state.\
174                                   \n* If any pending balance is there it can be in \'Pending\'. \
175                                   \n* And finally when all the transactions are over, it can be in \'Close\' state. \
176                                   \n* The project can be in either if the states \'Template\' and \'Running\'.\n If it is template then we can make projects based on the template projects. If its in \'Running\' state it is a normal project.\
177                                  \n If it is to be reviewed then the state is \'Pending\'.\n When the project is completed the state is set to \'Done\'.'),
178         'currency_id': fields.function(_currency, fnct_inv=_set_company_currency, method=True,
179             store = {
180                 'res.company': (_get_analytic_account, ['currency_id'], 10),
181             }, string='Currency', type='many2one', relation='res.currency'),
182     }
183
184     def _default_company(self, cr, uid, context=None):
185         user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
186         if user.company_id:
187             return user.company_id.id
188         return self.pool.get('res.company').search(cr, uid, [('parent_id', '=', False)])[0]
189
190     def _get_default_currency(self, cr, uid, context=None):
191         user = self.pool.get('res.users').browse(cr, uid, uid, context=context)
192         return user.company_id.currency_id.id
193
194     _defaults = {
195         'type': 'normal',
196         'company_id': _default_company,
197         'state': 'open',
198         'user_id': lambda self, cr, uid, ctx: uid,
199         'partner_id': lambda self, cr, uid, ctx: ctx.get('partner_id', False),
200         'contact_id': lambda self, cr, uid, ctx: ctx.get('contact_id', False),
201         'date_start': lambda *a: time.strftime('%Y-%m-%d'),
202         'currency_id': _get_default_currency,
203     }
204
205     def check_recursion(self, cr, uid, ids, parent=None):
206         return super(account_analytic_account, self)._check_recursion(cr, uid, ids, parent=parent)
207
208     _order = 'date_start desc,parent_id desc,code'
209     _constraints = [
210         (check_recursion, 'Error! You can not create recursive analytic accounts.', ['parent_id']),
211     ]
212
213     def copy(self, cr, uid, id, default=None, context=None):
214         if not default:
215             default = {}
216         default['code'] = False
217         default['line_ids'] = []
218         return super(account_analytic_account, self).copy(cr, uid, id, default, context=context)
219
220     def on_change_company(self, cr, uid, id, company_id):
221         if not company_id:
222             return {}
223         currency = self.pool.get('res.company').read(cr, uid, [company_id], ['currency_id'])[0]['currency_id']
224         return {'value': {'currency_id': currency}}
225
226     def on_change_parent(self, cr, uid, id, parent_id):
227         if not parent_id:
228             return {}
229         parent = self.read(cr, uid, [parent_id], ['partner_id','code'])[0]
230         if parent['partner_id']:
231             partner = parent['partner_id'][0]
232         else:
233             partner = False
234         res = {'value': {}}
235         if partner:
236             res['value']['partner_id'] = partner
237         return res
238
239     def name_search(self, cr, uid, name, args=None, operator='ilike', context=None, limit=100):
240         if not args:
241             args=[]
242         if context is None:
243             context={}
244         if context.get('current_model') == 'project.project':
245             cr.execute("select analytic_account_id from project_project")
246             project_ids = [x[0] for x in cr.fetchall()]
247             return self.name_get(cr, uid, project_ids, context=context)
248         account = self.search(cr, uid, [('code', '=', name)] + args, limit=limit, context=context)
249         if not account:
250             account = self.search(cr, uid, [('name', 'ilike', '%%%s%%' % name)] + args, limit=limit, context=context)
251             newacc = account
252             while newacc:
253                 newacc = self.search(cr, uid, [('parent_id', 'in', newacc)]+args, limit=limit, context=context)
254                 account += newacc
255         return self.name_get(cr, uid, account, context=context)
256
257 account_analytic_account()
258
259
260 class account_analytic_line(osv.osv):
261     _name = 'account.analytic.line'
262     _description = 'Analytic Line'
263
264     _columns = {
265         'name': fields.char('Description', size=256, required=True),
266         'date': fields.date('Date', required=True, select=True),
267         'amount': fields.float('Amount', required=True, help='Calculated by multiplying the quantity and the price given in the Product\'s cost price. Always expressed in the company main currency.', digits_compute=dp.get_precision('Account')),
268         'unit_amount': fields.float('Quantity', help='Specifies the amount of quantity to count.'),
269         'account_id': fields.many2one('account.analytic.account', 'Analytic Account', required=True, ondelete='cascade', select=True, domain=[('type','<>','view')]),
270         'user_id': fields.many2one('res.users', 'User'),
271         'company_id': fields.related('account_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True),
272
273     }
274     _defaults = {
275         'date': lambda *a: time.strftime('%Y-%m-%d'),
276         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.analytic.line', context=c),
277         'amount': 0.00
278     }
279
280     _order = 'date desc'
281
282 account_analytic_line()
283
284 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: