[MERGE]: Merged with trunk-addons.
[odoo/odoo.git] / addons / account / account_move_line.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 from datetime import datetime
24 from operator import itemgetter
25
26 import netsvc
27 from osv import fields, osv
28 from tools.translate import _
29 import decimal_precision as dp
30 import tools
31
32 class account_move_line(osv.osv):
33     _name = "account.move.line"
34     _description = "Journal Items"
35
36     def _query_get(self, cr, uid, obj='l', context=None):
37         fiscalyear_obj = self.pool.get('account.fiscalyear')
38         fiscalperiod_obj = self.pool.get('account.period')
39         account_obj = self.pool.get('account.account')
40         fiscalyear_ids = []
41         if context is None:
42             context = {}
43         initial_bal = context.get('initial_bal', False)
44         company_clause = " "
45         if context.get('company_id', False):
46             company_clause = " AND " +obj+".company_id = %s" % context.get('company_id', False)
47         if not context.get('fiscalyear', False):
48             fiscalyear_ids = fiscalyear_obj.search(cr, uid, [('state', '=', 'draft')])
49         else:
50             #for initial balance as well as for normal query, we check only the selected FY because the best practice is to generate the FY opening entries
51             fiscalyear_ids = [context['fiscalyear']]
52
53         fiscalyear_clause = (','.join([str(x) for x in fiscalyear_ids])) or '0'
54         state = context.get('state', False)
55         where_move_state = ''
56         where_move_lines_by_date = ''
57
58         if context.get('date_from', False) and context.get('date_to', False):
59             if initial_bal:
60                 where_move_lines_by_date = " OR " +obj+".move_id IN (SELECT id FROM account_move WHERE date < '" +context['date_from']+"')"
61             else:
62                 where_move_lines_by_date = " AND " +obj+".move_id IN (SELECT id FROM account_move WHERE date >= '" +context['date_from']+"' AND date <= '"+context['date_to']+"')"
63
64         if state:
65             if state.lower() not in ['all']:
66                 where_move_state= " AND "+obj+".move_id IN (SELECT id FROM account_move WHERE account_move.state = '"+state+"')"
67
68         if context.get('period_from', False) and context.get('period_to', False) and not context.get('periods', False):
69             if initial_bal:
70                 period_company_id = fiscalperiod_obj.browse(cr, uid, context['period_from'], context=context).company_id.id
71                 first_period = fiscalperiod_obj.search(cr, uid, [('company_id', '=', period_company_id)], order='date_start', limit=1)[0]
72                 context['periods'] = fiscalperiod_obj.build_ctx_periods(cr, uid, first_period, context['period_from'])
73             else:
74                 context['periods'] = fiscalperiod_obj.build_ctx_periods(cr, uid, context['period_from'], context['period_to'])
75         if context.get('periods', False):
76             if initial_bal:
77                 query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) %s %s)" % (fiscalyear_clause, where_move_state, where_move_lines_by_date)
78                 period_ids = fiscalperiod_obj.search(cr, uid, [('id', 'in', context['periods'])], order='date_start', limit=1)
79                 if period_ids and period_ids[0]:
80                     first_period = fiscalperiod_obj.browse(cr, uid, period_ids[0], context=context)
81                     # Find the old periods where date start of those periods less then Start period
82                     periods = fiscalperiod_obj.search(cr, uid, [('date_start', '<', first_period.date_start)])
83                     periods = ','.join([str(x) for x in periods])
84                     if periods:
85                         query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) OR id IN (%s)) %s %s" % (fiscalyear_clause, periods, where_move_state, where_move_lines_by_date)
86             else:
87                 ids = ','.join([str(x) for x in context['periods']])
88                 query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) AND id IN (%s)) %s %s" % (fiscalyear_clause, ids, where_move_state, where_move_lines_by_date)
89         else:
90             query = obj+".state <> 'draft' AND "+obj+".period_id IN (SELECT id FROM account_period WHERE fiscalyear_id IN (%s) %s %s)" % (fiscalyear_clause, where_move_state, where_move_lines_by_date)
91
92         if context.get('journal_ids', False):
93             query += ' AND '+obj+'.journal_id IN (%s)' % ','.join(map(str, context['journal_ids']))
94
95         if context.get('chart_account_id', False):
96             child_ids = account_obj._get_children_and_consol(cr, uid, [context['chart_account_id']], context=context)
97             query += ' AND '+obj+'.account_id IN (%s)' % ','.join(map(str, child_ids))
98
99         query += company_clause
100
101         return query
102
103     def default_get(self, cr, uid, fields, context=None):
104         data = self._default_get(cr, uid, fields, context=context)
105         for f in data.keys():
106             if f not in fields:
107                 del data[f]
108         return data
109
110     def create_analytic_lines(self, cr, uid, ids, context=None):
111         context = context or {}
112         acc_ana_line_obj = self.pool.get('account.analytic.line')
113         for obj_line in self.browse(cr, uid, ids, context=context):
114             if obj_line.analytic_account_id:
115                 if not obj_line.journal_id.analytic_journal_id:
116                     raise osv.except_osv(_('No Analytic Journal !'),_("You have to define an analytic journal on the '%s' journal!") % (obj_line.journal_id.name, ))
117                 amt = (obj_line.credit or  0.0) - (obj_line.debit or 0.0)
118                 vals_lines = {
119                     'name': obj_line.name,
120                     'date': obj_line.date,
121                     'account_id': obj_line.analytic_account_id.id,
122                     'unit_amount': obj_line.quantity,
123                     'product_id': obj_line.product_id and obj_line.product_id.id or False,
124                     'product_uom_id': obj_line.product_uom_id and obj_line.product_uom_id.id or False,
125                     'amount': amt,
126                     'general_account_id': obj_line.account_id.id,
127                     'journal_id': obj_line.journal_id.analytic_journal_id.id,
128                     'ref': obj_line.ref,
129                     'move_id': obj_line.id,
130                     'user_id': uid
131                 }
132                 acc_ana_line_obj.create(cr, uid, vals_lines)
133         return True
134
135     def _default_get_move_form_hook(self, cursor, user, data):
136         '''Called in the end of default_get method for manual entry in account_move form'''
137         if data.has_key('analytic_account_id'):
138             del(data['analytic_account_id'])
139         if data.has_key('account_tax_id'):
140             del(data['account_tax_id'])
141         return data
142
143     def convert_to_period(self, cr, uid, context=None):
144         context = context or {}
145         period_obj = self.pool.get('account.period')
146         #check if the period_id changed in the context from client side
147         if context.get('period_id', False):
148             period_id = context.get('period_id')
149             if type(period_id) == str:
150                 ids = period_obj.search(cr, uid, [('name', 'ilike', period_id)])
151                 context.update({
152                     'period_id': ids[0]
153                 })
154         return context
155
156     def _default_get(self, cr, uid, fields, context=None):
157         context = context or {}
158         if not context.get('journal_id', False) and context.get('search_default_journal_id', False):
159             context['journal_id'] = context.get('search_default_journal_id')
160         account_obj = self.pool.get('account.account')
161         period_obj = self.pool.get('account.period')
162         journal_obj = self.pool.get('account.journal')
163         move_obj = self.pool.get('account.move')
164         tax_obj = self.pool.get('account.tax')
165         fiscal_pos_obj = self.pool.get('account.fiscal.position')
166         partner_obj = self.pool.get('res.partner')
167         currency_obj = self.pool.get('res.currency')
168         context = self.convert_to_period(cr, uid, context)
169         # Compute simple values
170         data = super(account_move_line, self).default_get(cr, uid, fields, context=context)
171         # Starts: Manual entry from account.move form
172         if context.get('lines',[]):
173             total_new = 0.00
174             for i in context['lines']:
175                 if i[2]:
176                     total_new += (i[2]['debit'] or 0.00)- (i[2]['credit'] or 0.00)
177                     for item in i[2]:
178                             data[item] = i[2][item]
179             if context['journal']:
180                 journal_data = journal_obj.browse(cr, uid, context['journal'], context=context)
181                 if journal_data.type == 'purchase':
182                     if total_new > 0:
183                         account = journal_data.default_credit_account_id
184                     else:
185                         account = journal_data.default_debit_account_id
186                 else:
187                     if total_new > 0:
188                         account = journal_data.default_credit_account_id
189                     else:
190                         account = journal_data.default_debit_account_id
191                 if account and ((not fields) or ('debit' in fields) or ('credit' in fields)) and 'partner_id' in data and (data['partner_id']):
192                     part = partner_obj.browse(cr, uid, data['partner_id'], context=context)
193                     account = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, account.id)
194                     account = account_obj.browse(cr, uid, account, context=context)
195                     data['account_id'] =  account.id
196
197             s = -total_new
198             data['debit'] = s > 0 and s or 0.0
199             data['credit'] = s < 0 and -s or 0.0
200             data = self._default_get_move_form_hook(cr, uid, data)
201             return data
202         # Ends: Manual entry from account.move form
203         if not 'move_id' in fields: #we are not in manual entry
204             return data
205         # Compute the current move
206         move_id = False
207         partner_id = False
208         if context.get('journal_id', False) and context.get('period_id', False):
209             if 'move_id' in fields:
210                 cr.execute('SELECT move_id \
211                     FROM \
212                         account_move_line \
213                     WHERE \
214                         journal_id = %s and period_id = %s AND create_uid = %s AND state = %s \
215                     ORDER BY id DESC limit 1',
216                     (context['journal_id'], context['period_id'], uid, 'draft'))
217                 res = cr.fetchone()
218                 move_id = (res and res[0]) or False
219                 if not move_id:
220                     return data
221                 else:
222                     data['move_id'] = move_id
223             if 'date' in fields:
224                 cr.execute('SELECT date \
225                     FROM \
226                         account_move_line \
227                     WHERE \
228                         journal_id = %s AND period_id = %s AND create_uid = %s \
229                     ORDER BY id DESC',
230                     (context['journal_id'], context['period_id'], uid))
231                 res = cr.fetchone()
232                 if res:
233                     data['date'] = res[0]
234                 else:
235                     period = period_obj.browse(cr, uid, context['period_id'],
236                             context=context)
237                     data['date'] = period.date_start
238         if not move_id:
239             return data
240         total = 0
241         ref_id = False
242         move = move_obj.browse(cr, uid, move_id, context=context)
243         if 'name' in fields:
244             data.setdefault('name', move.line_id[-1].name)
245         acc1 = False
246         for l in move.line_id:
247             acc1 = l.account_id
248             partner_id = partner_id or l.partner_id.id
249             ref_id = ref_id or l.ref
250             total += (l.debit or 0.0) - (l.credit or 0.0)
251
252         if 'ref' in fields:
253             data['ref'] = ref_id
254         if 'partner_id' in fields:
255             data['partner_id'] = partner_id
256
257         if move.journal_id.type == 'purchase':
258             if total > 0:
259                 account = move.journal_id.default_credit_account_id
260             else:
261                 account = move.journal_id.default_debit_account_id
262         else:
263             if total > 0:
264                 account = move.journal_id.default_credit_account_id
265             else:
266                 account = move.journal_id.default_debit_account_id
267         part = partner_id and partner_obj.browse(cr, uid, partner_id) or False
268         # part = False is acceptable for fiscal position.
269         account = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, account.id)
270         if account:
271             account = account_obj.browse(cr, uid, account, context=context)
272
273         if account and ((not fields) or ('debit' in fields) or ('credit' in fields)):
274             data['account_id'] = account.id
275             # Propose the price VAT excluded, the VAT will be added when confirming line
276             if account.tax_ids:
277                 taxes = fiscal_pos_obj.map_tax(cr, uid, part and part.property_account_position or False, account.tax_ids)
278                 tax = tax_obj.browse(cr, uid, taxes)
279                 for t in tax_obj.compute_inv(cr, uid, tax, total, 1):
280                     total -= t['amount']
281
282         s = -total
283         data['debit'] = s > 0  and s or 0.0
284         data['credit'] = s < 0  and -s or 0.0
285
286         if account and account.currency_id:
287             data['currency_id'] = account.currency_id.id
288             acc = account
289             if s>0:
290                 acc = acc1
291             v = currency_obj.compute(cr, uid, account.company_id.currency_id.id, data['currency_id'], s, account=acc, account_invert=True)
292             data['amount_currency'] = v
293         return data
294
295     def on_create_write(self, cr, uid, id, context=None):
296         context = context or {}
297         if not id:
298             return []
299         ml = self.browse(cr, uid, id, context)
300         return map(lambda x: x.id, ml.move_id.line_id)
301
302     def _balance(self, cr, uid, ids, name, arg, context=None):
303         if context is None:
304             context = {}
305         c = context.copy()
306         c['initital_bal'] = True
307         sql = [
308             """SELECT l2.id, SUM(l1.debit-l1.credit) FROM account_move_line l1, account_move_line l2""",
309             """WHERE l2.account_id = l1.account_id""",
310             """AND""",
311             """l1.id <= l2.id""",
312             """AND""",
313             """l2.id IN %s""",
314             """AND""",
315             self._query_get(cr, uid, obj='l1', context=c),
316             """ GROUP BY l2.id""",
317         ]
318
319         cr.execute('\n'.join(sql), [tuple(ids)])
320         res = dict(cr.fetchall())
321         return res
322
323     def _invoice(self, cursor, user, ids, name, arg, context=None):
324         invoice_obj = self.pool.get('account.invoice')
325         res = {}
326         for line_id in ids:
327             res[line_id] = False
328         cursor.execute('SELECT l.id, i.id ' \
329                         'FROM account_move_line l, account_invoice i ' \
330                         'WHERE l.move_id = i.move_id ' \
331                         'AND l.id IN %s',
332                         (tuple(ids),))
333         invoice_ids = []
334         for line_id, invoice_id in cursor.fetchall():
335             res[line_id] = invoice_id
336             invoice_ids.append(invoice_id)
337         invoice_names = {False: ''}
338         for invoice_id, name in invoice_obj.name_get(cursor, user, invoice_ids, context=context):
339             invoice_names[invoice_id] = name
340         for line_id in res.keys():
341             invoice_id = res[line_id]
342             res[line_id] = (invoice_id, invoice_names[invoice_id])
343         return res
344
345     def name_get(self, cr, uid, ids, context=None):
346         context = context or {}
347         if not ids:
348             return []
349         result = []
350         for line in self.browse(cr, uid, ids, context):
351             if line.ref:
352                 result.append((line.id, (line.move_id.name or '')+' ('+line.ref+')'))
353             else:
354                 result.append((line.id, line.move_id.name))
355         return result
356
357     def _balance_search(self, cursor, user, obj, name, args, domain=None, context=None):
358         if context is None:
359             context = {}
360         if not args:
361             return []
362         where = ' AND '.join(map(lambda x: '(abs(sum(debit-credit))'+x[1]+str(x[2])+')',args))
363         cursor.execute('SELECT id, SUM(debit-credit) FROM account_move_line \
364                      GROUP BY id, debit, credit having '+where)
365         res = cursor.fetchall()
366         if not res:
367             return [('id', '=', '0')]
368         return [('id', 'in', [x[0] for x in res])]
369
370     def _invoice_search(self, cursor, user, obj, name, args, context=None):
371         if not args:
372             return []
373         invoice_obj = self.pool.get('account.invoice')
374         i = 0
375         while i < len(args):
376             fargs = args[i][0].split('.', 1)
377             if len(fargs) > 1:
378                 args[i] = (fargs[0], 'in', invoice_obj.search(cursor, user,
379                     [(fargs[1], args[i][1], args[i][2])]))
380                 i += 1
381                 continue
382             if isinstance(args[i][2], basestring):
383                 res_ids = invoice_obj.name_search(cursor, user, args[i][2], [],
384                         args[i][1])
385                 args[i] = (args[i][0], 'in', [x[0] for x in res_ids])
386             i += 1
387         qu1, qu2 = [], []
388         for x in args:
389             if x[1] != 'in':
390                 if (x[2] is False) and (x[1] == '='):
391                     qu1.append('(i.id IS NULL)')
392                 elif (x[2] is False) and (x[1] == '<>' or x[1] == '!='):
393                     qu1.append('(i.id IS NOT NULL)')
394                 else:
395                     qu1.append('(i.id %s %s)' % (x[1], '%s'))
396                     qu2.append(x[2])
397             elif x[1] == 'in':
398                 if len(x[2]) > 0:
399                     qu1.append('(i.id IN (%s))' % (','.join(['%s'] * len(x[2]))))
400                     qu2 += x[2]
401                 else:
402                     qu1.append(' (False)')
403         if qu1:
404             qu1 = ' AND' + ' AND'.join(qu1)
405         else:
406             qu1 = ''
407         cursor.execute('SELECT l.id ' \
408                 'FROM account_move_line l, account_invoice i ' \
409                 'WHERE l.move_id = i.move_id ' + qu1, qu2)
410         res = cursor.fetchall()
411         if not res:
412             return [('id', '=', '0')]
413         return [('id', 'in', [x[0] for x in res])]
414
415     def _get_move_lines(self, cr, uid, ids, context=None):
416         context = context or {}
417         result = []
418         for move in self.pool.get('account.move').browse(cr, uid, ids, context=context):
419             for line in move.line_id:
420                 result.append(line.id)
421         return result
422
423     _columns = {
424         'name': fields.char('Name', size=64, required=True),
425         'quantity': fields.float('Quantity', digits=(16,2), help="The optional quantity expressed by this line, eg: number of product sold. The quantity is not a legal requirement but is very useful for some reports."),
426         'product_uom_id': fields.many2one('product.uom', 'UoM'),
427         'product_id': fields.many2one('product.product', 'Product'),
428         'debit': fields.float('Debit', digits_compute=dp.get_precision('Account')),
429         'credit': fields.float('Credit', digits_compute=dp.get_precision('Account')),
430         'account_id': fields.many2one('account.account', 'Account', required=True, ondelete="cascade", domain=[('type','<>','view'), ('type', '<>', 'closed')], select=2),
431         'move_id': fields.many2one('account.move', 'Move', ondelete="cascade", help="The move of this entry line.", select=2, required=True),
432         'narration': fields.related('move_id','narration', type='text', relation='account.move', string='Narration'),
433         'ref': fields.related('move_id', 'ref', string='Reference', type='char', size=64, store=True),
434         'statement_id': fields.many2one('account.bank.statement', 'Statement', help="The bank statement used for bank reconciliation", select=1),
435         'reconcile_id': fields.many2one('account.move.reconcile', 'Reconcile', readonly=True, ondelete='set null', select=2),
436         'reconcile_partial_id': fields.many2one('account.move.reconcile', 'Partial Reconcile', readonly=True, ondelete='set null', select=2),
437         'amount_currency': fields.float('Amount Currency', help="The amount expressed in an optional other currency if it is a multi-currency entry.", digits_compute=dp.get_precision('Account')),
438         'currency_id': fields.many2one('res.currency', 'Currency', help="The optional other currency if it is a multi-currency entry."),
439         'period_id': fields.many2one('account.period', 'Period', required=True, select=2),
440         'journal_id': fields.many2one('account.journal', 'Journal', required=True, select=1),
441         'blocked': fields.boolean('Litigation', help="You can check this box to mark this journal item as a litigation with the associated partner"),
442         'partner_id': fields.many2one('res.partner', 'Partner', select=1),
443         'date_maturity': fields.date('Due date', help="This field is used for payable and receivable journal entries. You can put the limit date for the payment of this line."),
444         'date': fields.related('move_id','date', string='Effective date', type='date', required=True,
445                                 store = {
446                                     'account.move': (_get_move_lines, ['date'], 20)
447                                 }),
448         'date_created': fields.date('Creation date'),
449         'analytic_lines': fields.one2many('account.analytic.line', 'move_id', 'Analytic lines'),
450         'centralisation': fields.selection([('normal','Normal'),('credit','Credit Centralisation'),('debit','Debit Centralisation')], 'Centralisation', size=6),
451         'balance': fields.function(_balance, fnct_search=_balance_search, method=True, string='Balance'),
452         'state': fields.selection([('draft','Unbalanced'), ('valid','Valid')], 'State', readonly=True,
453                                   help='When new move line is created the state will be \'Draft\'.\n* When all the payments are done it will be in \'Valid\' state.'),
454         'tax_code_id': fields.many2one('account.tax.code', 'Tax Account', help="The Account can either be a base tax code or a tax code account."),
455         'tax_amount': fields.float('Tax/Base Amount', digits_compute=dp.get_precision('Account'), select=True, help="If the Tax account is a tax code account, this field will contain the taxed amount.If the tax account is base tax code, "\
456                     "this field will contain the basic amount(without tax)."),
457         'invoice': fields.function(_invoice, method=True, string='Invoice',
458             type='many2one', relation='account.invoice', fnct_search=_invoice_search),
459         'account_tax_id':fields.many2one('account.tax', 'Tax'),
460         'analytic_account_id': fields.many2one('account.analytic.account', 'Analytic Account'),
461         #TODO: remove this
462         #'amount_taxed':fields.float("Taxed Amount", digits_compute=dp.get_precision('Account')),
463         'company_id': fields.related('account_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True)
464     }
465
466     def _get_date(self, cr, uid, context=None):
467         context = context or {}
468         period_obj = self.pool.get('account.period')
469         dt = time.strftime('%Y-%m-%d')
470         if ('journal_id' in context) and ('period_id' in context):
471             cr.execute('SELECT date FROM account_move_line ' \
472                     'WHERE journal_id = %s AND period_id = %s ' \
473                     'ORDER BY id DESC limit 1',
474                     (context['journal_id'], context['period_id']))
475             res = cr.fetchone()
476             if res:
477                 dt = res[0]
478             else:
479                 period = period_obj.browse(cr, uid, context['period_id'], context=context)
480                 dt = period.date_start
481         return dt
482
483     def _get_currency(self, cr, uid, context=None):
484         if context is None:
485             context = {}
486         if not context.get('journal_id', False):
487             return False
488         cur = self.pool.get('account.journal').browse(cr, uid, context['journal_id']).currency
489         return cur and cur.id or False
490
491     _defaults = {
492         'blocked': False,
493         'centralisation': 'normal',
494         'date': _get_date,
495         'date_created': lambda *a: time.strftime('%Y-%m-%d'),
496         'state': 'draft',
497         'currency_id': _get_currency,
498         'journal_id': lambda self, cr, uid, c: c.get('journal_id', False),
499         'account_id': lambda self, cr, uid, c: c.get('account_id', False),
500         'period_id': lambda self, cr, uid, c: c.get('period_id', False),
501         'company_id': lambda self, cr, uid, c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.move.line', context=c)
502     }
503     _order = "date desc, id desc"
504     _sql_constraints = [
505         ('credit_debit1', 'CHECK (credit*debit=0)',  'Wrong credit or debit value in accounting entry !'),
506         ('credit_debit2', 'CHECK (credit+debit>=0)', 'Wrong credit or debit value in accounting entry !'),
507     ]
508
509     def _auto_init(self, cr, context=None):
510         context = context or {}
511         super(account_move_line, self)._auto_init(cr, context=context)
512         cr.execute('SELECT indexname FROM pg_indexes WHERE indexname = \'account_move_line_journal_id_period_id_index\'')
513         if not cr.fetchone():
514             cr.execute('CREATE INDEX account_move_line_journal_id_period_id_index ON account_move_line (journal_id, period_id)')
515
516     def _check_no_view(self, cr, uid, ids, context=None):
517         context = context or {}
518         lines = self.browse(cr, uid, ids, context=context)
519         for l in lines:
520             if l.account_id.type == 'view':
521                 return False
522         return True
523
524     def _check_no_closed(self, cr, uid, ids, context=None):
525         context = context or {}
526         lines = self.browse(cr, uid, ids, context=context)
527         for l in lines:
528             if l.account_id.type == 'closed':
529                 return False
530         return True
531
532     def _check_company_id(self, cr, uid, ids, context=None):
533         context = context or {}
534         lines = self.browse(cr, uid, ids, context=context)
535         for l in lines:
536             if l.company_id != l.account_id.company_id or l.company_id != l.period_id.company_id:
537                 return False
538         return True
539
540     def _check_partner_id(self, cr, uid, ids, context=None):
541         context = context or {}
542         lines = self.browse(cr, uid, ids, context=context)
543         for l in lines:
544             if l.account_id.type in ('receivable', 'payable') and not l.partner_id:
545                 return False
546         return True
547
548     _constraints = [
549         (_check_no_view, 'You can not create move line on view account.', ['account_id']),
550         (_check_no_closed, 'You can not create move line on closed account.', ['account_id']),
551         (_check_company_id, 'Company must be same for its related account and period.',['company_id'] ),
552         (_check_partner_id, 'You can not create move line on receivable/payable account without partner', ['account_id'] )
553     ]
554
555     #TODO: ONCHANGE_ACCOUNT_ID: set account_tax_id
556     def onchange_currency(self, cr, uid, ids, account_id, amount, currency_id, date=False, journal=False):
557         account_obj = self.pool.get('account.account')
558         journal_obj = self.pool.get('account.journal')
559         currency_obj = self.pool.get('res.currency')
560         if (not currency_id) or (not account_id):
561             return {}
562         result = {}
563         acc = account_obj.browse(cr, uid, account_id)
564         if (amount>0) and journal:
565             x = journal_obj.browse(cr, uid, journal).default_credit_account_id
566             if x: acc = x
567         v = currency_obj.compute(cr, uid, currency_id, acc.company_id.currency_id.id, amount, account=acc)
568         result['value'] = {
569             'debit': v > 0 and v or 0.0,
570             'credit': v < 0 and -v or 0.0
571         }
572         return result
573
574     def onchange_partner_id(self, cr, uid, ids, move_id, partner_id, account_id=None, debit=0, credit=0, date=False, journal=False):
575         partner_obj = self.pool.get('res.partner')
576         payment_term_obj = self.pool.get('account.payment.term')
577         journal_obj = self.pool.get('account.journal')
578         fiscal_pos_obj = self.pool.get('account.fiscal.position')
579         val = {}
580         val['date_maturity'] = False
581
582         if not partner_id:
583             return {'value':val}
584         if not date:
585             date = datetime.now().strftime('%Y-%m-%d')
586         part = partner_obj.browse(cr, uid, partner_id)
587
588         if part.property_payment_term:
589             res = payment_term_obj.compute(cr, uid, part.property_payment_term.id, 100, date)
590             if res:
591                 val['date_maturity'] = res[0][0]
592         if not account_id:
593             id1 = part.property_account_payable.id
594             id2 =  part.property_account_receivable.id
595             if journal:
596                 jt = journal_obj.browse(cr, uid, journal).type
597                 #FIXME: Bank and cash journal are such a journal we can not assume a account based on this 2 journals
598                 # Bank and cash journal can have a payment or receipt transaction, and in both type partner account
599                 # will not be same id payment then payable, and if receipt then receivable
600                 #if jt in ('sale', 'purchase_refund', 'bank', 'cash'):
601                 if jt in ('sale', 'purchase_refund'):
602                     val['account_id'] = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, id2)
603                 elif jt in ('purchase', 'sale_refund', 'expense', 'bank', 'cash'):
604                     val['account_id'] = fiscal_pos_obj.map_account(cr, uid, part and part.property_account_position or False, id1)
605                 if val.get('account_id', False):
606                     d = self.onchange_account_id(cr, uid, ids, val['account_id'])
607                     val.update(d['value'])
608         return {'value':val}
609
610     def onchange_account_id(self, cr, uid, ids, account_id=False, partner_id=False):
611         account_obj = self.pool.get('account.account')
612         partner_obj = self.pool.get('res.partner')
613         fiscal_pos_obj = self.pool.get('account.fiscal.position')
614         val = {}
615         if account_id:
616             res = account_obj.browse(cr, uid, account_id)
617             tax_ids = res.tax_ids
618             if tax_ids and partner_id:
619                 part = partner_obj.browse(cr, uid, partner_id)
620                 tax_id = fiscal_pos_obj.map_tax(cr, uid, part and part.property_account_position or False, tax_ids)[0]
621             else:
622                 tax_id = tax_ids and tax_ids[0].id or False
623             val['account_tax_id'] = tax_id
624         return {'value': val}
625     #
626     # type: the type if reconciliation (no logic behind this field, for info)
627     #
628     # writeoff; entry generated for the difference between the lines
629     #
630     def search(self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False):
631         if context is None:
632             context = {}
633         if context and context.get('next_partner_only', False):
634             if not context.get('partner_id', False):
635                 partner = self.get_next_partner_only(cr, uid, offset, context)
636             else:
637                 partner = context.get('partner_id', False)
638             if not partner:
639                 return []
640             args.append(('partner_id', '=', partner[0]))
641         return super(account_move_line, self).search(cr, uid, args, offset, limit, order, context, count)
642
643     def get_next_partner_only(self, cr, uid, offset=0, context=None):
644         cr.execute(
645              """
646              SELECT p.id
647              FROM res_partner p
648              RIGHT JOIN (
649                 SELECT l.partner_id AS partner_id, SUM(l.debit) AS debit, SUM(l.credit) AS credit
650                 FROM account_move_line l
651                 LEFT JOIN account_account a ON (a.id = l.account_id)
652                     LEFT JOIN res_partner p ON (l.partner_id = p.id)
653                     WHERE a.reconcile IS TRUE
654                     AND l.reconcile_id IS NULL
655                     AND (p.last_reconciliation_date IS NULL OR l.date > p.last_reconciliation_date)
656                     AND l.state <> 'draft'
657                     GROUP BY l.partner_id
658                 ) AS s ON (p.id = s.partner_id)
659                 WHERE debit > 0 AND credit > 0
660                 ORDER BY p.last_reconciliation_date LIMIT 1 OFFSET %s""", (offset, )
661             )
662         return cr.fetchone()
663
664     def reconcile_partial(self, cr, uid, ids, type='auto', context=None):
665         move_rec_obj = self.pool.get('account.move.reconcile')
666         merges = []
667         unmerge = []
668         total = 0.0
669         merges_rec = []
670         company_list = []
671         if context is None:
672             context = {}
673         for line in self.browse(cr, uid, ids, context=context):
674             if company_list and not line.company_id.id in company_list:
675                 raise osv.except_osv(_('Warning !'), _('To reconcile the entries company should be the same for all entries'))
676             company_list.append(line.company_id.id)
677
678         for line in self.browse(cr, uid, ids, context):
679             if line.reconcile_id:
680                 raise osv.except_osv(_('Warning'), _('Already Reconciled!'))
681             if line.reconcile_partial_id:
682                 for line2 in line.reconcile_partial_id.line_partial_ids:
683                     if not line2.reconcile_id:
684                         if line2.id not in merges:
685                             merges.append(line2.id)
686                         total += (line2.debit or 0.0) - (line2.credit or 0.0)
687                 merges_rec.append(line.reconcile_partial_id.id)
688             else:
689                 unmerge.append(line.id)
690                 total += (line.debit or 0.0) - (line.credit or 0.0)
691
692         if not total:
693             res = self.reconcile(cr, uid, merges+unmerge, context=context)
694             return res
695         r_id = move_rec_obj.create(cr, uid, {
696             'type': type,
697             'line_partial_ids': map(lambda x: (4,x,False), merges+unmerge)
698         })
699         move_rec_obj.reconcile_partial_check(cr, uid, [r_id] + merges_rec, context=context)
700         return True
701
702     def reconcile(self, cr, uid, ids, type='auto', writeoff_acc_id=False, writeoff_period_id=False, writeoff_journal_id=False, context=None):
703         account_obj = self.pool.get('account.account')
704         move_obj = self.pool.get('account.move')
705         move_rec_obj = self.pool.get('account.move.reconcile')
706         partner_obj = self.pool.get('res.partner')
707         currency_obj = self.pool.get('res.currency')
708         lines = self.browse(cr, uid, ids, context=context)
709         unrec_lines = filter(lambda x: not x['reconcile_id'], lines)
710         credit = debit = 0.0
711         currency = 0.0
712         account_id = False
713         partner_id = False
714         if context is None:
715             context = {}
716         company_list = []
717         for line in self.browse(cr, uid, ids, context=context):
718             if company_list and not line.company_id.id in company_list:
719                 raise osv.except_osv(_('Warning !'), _('To reconcile the entries company should be the same for all entries'))
720             company_list.append(line.company_id.id)
721         for line in unrec_lines:
722             if line.state <> 'valid':
723                 raise osv.except_osv(_('Error'),
724                         _('Entry "%s" is not valid !') % line.name)
725             credit += line['credit']
726             debit += line['debit']
727             currency += line['amount_currency'] or 0.0
728             account_id = line['account_id']['id']
729             partner_id = (line['partner_id'] and line['partner_id']['id']) or False
730         writeoff = debit - credit
731
732         # Ifdate_p in context => take this date
733         if context.has_key('date_p') and context['date_p']:
734             date=context['date_p']
735         else:
736             date = time.strftime('%Y-%m-%d')
737
738         cr.execute('SELECT account_id, reconcile_id '\
739                    'FROM account_move_line '\
740                    'WHERE id IN %s '\
741                    'GROUP BY account_id,reconcile_id',
742                    (tuple(ids), ))
743         r = cr.fetchall()
744         #TODO: move this check to a constraint in the account_move_reconcile object
745         if (len(r) != 1) and not context.get('fy_closing', False):
746             raise osv.except_osv(_('Error'), _('Entries are not of the same account or already reconciled ! '))
747         if not unrec_lines:
748             raise osv.except_osv(_('Error'), _('Entry is already reconciled'))
749         account = account_obj.browse(cr, uid, account_id, context=context)
750         if not context.get('fy_closing', False) and not account.reconcile:
751             raise osv.except_osv(_('Error'), _('The account is not defined to be reconciled !'))
752         if r[0][1] != None:
753             raise osv.except_osv(_('Error'), _('Some entries are already reconciled !'))
754
755         if (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \
756            (account.currency_id and (not currency_obj.is_zero(cr, uid, account.currency_id, currency))):
757             if not writeoff_acc_id:
758                 raise osv.except_osv(_('Warning'), _('You have to provide an account for the write off entry !'))
759             if writeoff > 0:
760                 debit = writeoff
761                 credit = 0.0
762                 self_credit = writeoff
763                 self_debit = 0.0
764             else:
765                 debit = 0.0
766                 credit = -writeoff
767                 self_credit = 0.0
768                 self_debit = -writeoff
769             # If comment exist in context, take it
770             if 'comment' in context and context['comment']:
771                 libelle = context['comment']
772             else:
773                 libelle = 'Write-Off'
774             writeoff_lines = [
775                 (0, 0, {
776                     'name': libelle,
777                     'debit': self_debit,
778                     'credit': self_credit,
779                     'account_id': account_id,
780                     'date': date,
781                     'partner_id': partner_id,
782                     'currency_id': account.currency_id.id or False,
783                     'amount_currency': account.currency_id.id and -currency or 0.0
784                 }),
785                 (0, 0, {
786                     'name': libelle,
787                     'debit': debit,
788                     'credit': credit,
789                     'account_id': writeoff_acc_id,
790                     'analytic_account_id': context.get('analytic_id', False),
791                     'date': date,
792                     'partner_id': partner_id
793                 })
794             ]
795
796             writeoff_move_id = move_obj.create(cr, uid, {
797                 'period_id': writeoff_period_id,
798                 'journal_id': writeoff_journal_id,
799                 'date':date,
800                 'state': 'draft',
801                 'line_id': writeoff_lines
802             })
803
804             writeoff_line_ids = self.search(cr, uid, [('move_id', '=', writeoff_move_id), ('account_id', '=', account_id)])
805             ids += writeoff_line_ids
806
807         r_id = move_rec_obj.create(cr, uid, {
808             'type': type,
809             'line_id': map(lambda x: (4, x, False), ids),
810             'line_partial_ids': map(lambda x: (3, x, False), ids)
811         })
812         wf_service = netsvc.LocalService("workflow")
813         # the id of the move.reconcile is written in the move.line (self) by the create method above
814         # because of the way the line_id are defined: (4, x, False)
815         for id in ids:
816             wf_service.trg_trigger(uid, 'account.move.line', id, cr)
817
818         if lines and lines[0]:
819             partner_id = lines[0].partner_id and lines[0].partner_id.id or False
820             if partner_id and context and context.get('stop_reconcile', False):
821                 partner_obj.write(cr, uid, [partner_id], {'last_reconciliation_date': time.strftime('%Y-%m-%d %H:%M:%S')})
822         return r_id
823
824     def view_header_get(self, cr, user, view_id, view_type, context):
825         context = self.convert_to_period(cr, user, context)
826         if context.get('account_id', False):
827             cr.execute('SELECT code FROM account_account WHERE id = %s', (context['account_id'], ))
828             res = cr.fetchone()
829             res = _('Entries: ')+ (res[0] or '')
830             return res
831         if (not context.get('journal_id', False)) or (not context.get('period_id', False)):
832             return False
833         cr.execute('SELECT code FROM account_journal WHERE id = %s', (context['journal_id'], ))
834         j = cr.fetchone()[0] or ''
835         cr.execute('SELECT code FROM account_period WHERE id = %s', (context['period_id'], ))
836         p = cr.fetchone()[0] or ''
837         if j or p:
838             return j+(p and (':'+p) or '')
839         return False
840
841     def onchange_date(self, cr, user, ids, date, context=None):
842         """
843         Returns a dict that contains new values and context
844         @param cr: A database cursor
845         @param user: ID of the user currently logged in
846         @param date: latest value from user input for field date
847         @param args: other arguments
848         @param context: context arguments, like lang, time zone
849         @return: Returns a dict which contains new values, and context
850         """
851         res = {}
852         context = context or {}
853         period_pool = self.pool.get('account.period')
854         pids = period_pool.search(cr, user, [('date_start','<=',date), ('date_stop','>=',date)])
855         if pids:
856             res.update({
857                 'period_id':pids[0]
858             })
859             context.update({
860                 'period_id':pids[0]
861             })
862         return {
863             'value':res,
864             'context':context,
865         }
866
867     def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
868         journal_pool = self.pool.get('account.journal')
869         context = context or {}
870         result = super(osv.osv, self).fields_view_get(cr, uid, view_id, view_type, context=context, toolbar=toolbar, submenu=submenu)
871         if view_type != 'tree':
872             #Remove the toolbar from the form view
873             if view_type == 'form':
874                 if result.get('toolbar', False):
875                     result['toolbar']['action'] = []
876             #Restrict the list of journal view in search view
877             if view_type == 'search' and result['fields'].get('journal_id', False):
878                 result['fields']['journal_id']['selection'] = journal_pool.name_search(cr, uid, '', [], context=context)
879             return result
880         if context.get('view_mode', False):
881             return result
882         fld = []
883         fields = {}
884         flds = []
885         title = "Accounting Entries" #self.view_header_get(cr, uid, view_id, view_type, context)
886         xml = '''<?xml version="1.0"?>\n<tree string="%s" editable="top" refresh="5" on_write="on_create_write" colors="red:state==\'draft\';black:state==\'valid\'">\n\t''' % (title)
887
888         ids = journal_pool.search(cr, uid, [])
889         journals = journal_pool.browse(cr, uid, ids, context=context)
890         all_journal = [None]
891         common_fields = {}
892         total = len(journals)
893         for journal in journals:
894             all_journal.append(journal.id)
895             for field in journal.view_id.columns_id:
896                 if not field.field in fields:
897                     fields[field.field] = [journal.id]
898                     fld.append((field.field, field.sequence, field.name))
899                     flds.append(field.field)
900                     common_fields[field.field] = 1
901                 else:
902                     fields.get(field.field).append(journal.id)
903                     common_fields[field.field] = common_fields[field.field] + 1
904         fld.append(('period_id', 3, 'Period'))
905         fld.append(('journal_id', 10, 'Journal'))
906         flds.append('period_id')
907         flds.append('journal_id')
908         fields['period_id'] = all_journal
909         fields['journal_id'] = all_journal
910         fld = sorted(fld, key=itemgetter(1))
911         widths = {
912             'statement_id': 50,
913             'state': 60,
914             'tax_code_id': 50,
915             'move_id': 40,
916         }
917         for field_it in fld:
918             field = field_it[0]
919             if common_fields.get(field) == total:
920                 fields.get(field).append(None)
921 #            if field=='state':
922 #                state = 'colors="red:state==\'draft\'"'
923             attrs = []
924             if field == 'debit':
925                 attrs.append('sum = "Total debit"')
926
927             elif field == 'credit':
928                 attrs.append('sum = "Total credit"')
929
930             elif field == 'move_id':
931                 attrs.append('required = "False"')
932
933             elif field == 'account_tax_id':
934                 attrs.append('domain="[(\'parent_id\', \'=\' ,False)]"')
935                 attrs.append("context=\"{'journal_id': journal_id}\"")
936
937             elif field == 'account_id' and journal.id:
938                 attrs.append('domain="[(\'journal_id\', \'=\', '+str(journal.id)+'),(\'type\',\'&lt;&gt;\',\'view\'), (\'type\',\'&lt;&gt;\',\'closed\')]" on_change="onchange_account_id(account_id, partner_id)"')
939
940             elif field == 'partner_id':
941                 attrs.append('on_change="onchange_partner_id(move_id, partner_id, account_id, debit, credit, date, journal_id)"')
942
943             elif field == 'journal_id':
944                 attrs.append("context=\"{'journal_id': journal_id}\"")
945
946             elif field == 'statement_id':
947                 attrs.append("domain=\"[('state', '!=', 'confirm'),('journal_id.type', '=', 'bank')]\"")
948
949             elif field == 'date':
950                 attrs.append('on_change="onchange_date(date)"')
951
952             elif field == 'analytic_account_id':
953                 attrs.append('''groups="analytic.group_analytic_accounting"''') # Currently it is not working due to framework problem may be ..
954
955             if field in ('amount_currency', 'currency_id'):
956                 attrs.append('on_change="onchange_currency(account_id, amount_currency, currency_id, date, journal_id)"')
957                 attrs.append('''attrs="{'readonly': [('state', '=', 'valid')]}"''')
958
959             if field in widths:
960                 attrs.append('width="'+str(widths[field])+'"')
961             attrs.append('string="'+field_it[2]+'"')
962             attrs.append("invisible=\"context.get('visible_id') not in %s\"" % (fields.get(field)))
963             xml += '''<field name="%s" %s/>\n''' % (field,' '.join(attrs))
964
965         xml += '''</tree>'''
966         result['arch'] = xml
967         result['fields'] = self.fields_get(cr, uid, flds, context)
968         return result
969
970     def _check_moves(self, cr, uid, context=None):
971         # use the first move ever created for this journal and period
972         context = context or {}
973         cr.execute('SELECT id, state, name FROM account_move WHERE journal_id = %s AND period_id = %s ORDER BY id limit 1', (context['journal_id'],context['period_id']))
974         res = cr.fetchone()
975         if res:
976             if res[1] != 'draft':
977                 raise osv.except_osv(_('UserError'),
978                        _('The account move (%s) for centralisation ' \
979                                 'has been confirmed!') % res[2])
980         return res
981
982     def _remove_move_reconcile(self, cr, uid, move_ids=[], context=None):
983         # Function remove move rencocile ids related with moves
984         obj_move_line = self.pool.get('account.move.line')
985         obj_move_rec = self.pool.get('account.move.reconcile')
986         unlink_ids = []
987         context = context or {}
988         if not move_ids:
989             return True
990         recs = obj_move_line.read(cr, uid, move_ids, ['reconcile_id', 'reconcile_partial_id'])
991         full_recs = filter(lambda x: x['reconcile_id'], recs)
992         rec_ids = [rec['reconcile_id'][0] for rec in full_recs]
993         part_recs = filter(lambda x: x['reconcile_partial_id'], recs)
994         part_rec_ids = [rec['reconcile_partial_id'][0] for rec in part_recs]
995         unlink_ids += rec_ids
996         unlink_ids += part_rec_ids
997         if unlink_ids:
998             obj_move_rec.unlink(cr, uid, unlink_ids)
999         return True
1000
1001     def unlink(self, cr, uid, ids, context=None, check=True):
1002         context = context or {}
1003         move_obj = self.pool.get('account.move')
1004         self._update_check(cr, uid, ids, context)
1005         result = False
1006         for line in self.browse(cr, uid, ids, context):
1007             context['journal_id'] = line.journal_id.id
1008             context['period_id'] = line.period_id.id
1009             result = super(account_move_line, self).unlink(cr, uid, [line.id], context=context)
1010             if check:
1011                 move_obj.validate(cr, uid, [line.move_id.id], context=context)
1012         return result
1013
1014     def _check_date(self, cr, uid, vals, context=None, check=True):
1015         if context is None:
1016             context = {}
1017         move_obj = self.pool.get('account.move')
1018         journal_obj = self.pool.get('account.journal')
1019         period_obj = self.pool.get('account.period')
1020         journal_id = False
1021         if 'date' in vals.keys():
1022             if 'journal_id' in vals and 'journal_id' not in context:
1023                 journal_id = vals['journal_id']
1024             if 'period_id' in vals and 'period_id' not in context:
1025                 period_id = vals['period_id']
1026             elif 'journal_id' not in context and 'move_id' in vals:
1027                 if vals.get('move_id', False):
1028                     m = move_obj.browse(cr, uid, vals['move_id'])
1029                     journal_id = m.journal_id.id
1030                     period_id = m.period_id.id
1031             else:
1032                 journal_id = context.get('journal_id', False)
1033                 period_id = context.get('period_id', False)
1034             if journal_id:
1035                 journal = journal_obj.browse(cr, uid, [journal_id], context=context)[0]
1036                 if journal.allow_date and period_id:
1037                     period = period_obj.browse(cr, uid, [period_id])[0]
1038                     if not time.strptime(vals['date'][:10],'%Y-%m-%d') >= time.strptime(period.date_start, '%Y-%m-%d') or not time.strptime(vals['date'][:10], '%Y-%m-%d') <= time.strptime(period.date_stop, '%Y-%m-%d'):
1039                         raise osv.except_osv(_('Error'),_('The date of your Journal Entry is not in the defined period!'))
1040         else:
1041             return True
1042
1043     def write(self, cr, uid, ids, vals, context=None, check=True, update_check=True):
1044         if context is None:
1045             context={}
1046         move_obj = self.pool.get('account.move')
1047         account_obj = self.pool.get('account.account')
1048         journal_obj = self.pool.get('account.journal')
1049         if vals.get('account_tax_id', False):
1050             raise osv.except_osv(_('Unable to change tax !'), _('You can not change the tax, you should remove and recreate lines !'))
1051         self._check_date(cr, uid, vals, context, check)
1052         if ('account_id' in vals) and not account_obj.read(cr, uid, vals['account_id'], ['active'])['active']:
1053             raise osv.except_osv(_('Bad account!'), _('You can not use an inactive account!'))
1054         if update_check:
1055             if ('account_id' in vals) or ('journal_id' in vals) or ('period_id' in vals) or ('move_id' in vals) or ('debit' in vals) or ('credit' in vals) or ('date' in vals):
1056                 self._update_check(cr, uid, ids, context)
1057
1058         todo_date = None
1059         if vals.get('date', False):
1060             todo_date = vals['date']
1061             del vals['date']
1062
1063         for line in self.browse(cr, uid, ids, context=context):
1064             ctx = context.copy()
1065             if ('journal_id' not in ctx):
1066                 if line.move_id:
1067                    ctx['journal_id'] = line.move_id.journal_id.id
1068                 else:
1069                     ctx['journal_id'] = line.journal_id.id
1070             if ('period_id' not in ctx):
1071                 if line.move_id:
1072                     ctx['period_id'] = line.move_id.period_id.id
1073                 else:
1074                     ctx['period_id'] = line.period_id.id
1075             #Check for centralisation
1076             journal = journal_obj.browse(cr, uid, ctx['journal_id'], context=ctx)
1077             if journal.centralisation:
1078                 self._check_moves(cr, uid, context=ctx)
1079         result = super(account_move_line, self).write(cr, uid, ids, vals, context)
1080         if check:
1081             done = []
1082             for line in self.browse(cr, uid, ids):
1083                 if line.move_id.id not in done:
1084                     done.append(line.move_id.id)
1085                     move_obj.validate(cr, uid, [line.move_id.id], context)
1086                     if todo_date:
1087                         move_obj.write(cr, uid, [line.move_id.id], {'date': todo_date}, context=context)
1088         return result
1089
1090     def _update_journal_check(self, cr, uid, journal_id, period_id, context=None):
1091         journal_obj = self.pool.get('account.journal')
1092         period_obj = self.pool.get('account.period')
1093         jour_period_obj = self.pool.get('account.journal.period')
1094         cr.execute('SELECT state FROM account_journal_period WHERE journal_id = %s AND period_id = %s', (journal_id, period_id))
1095         result = cr.fetchall()
1096         context = context or {}
1097         for (state,) in result:
1098             if state == 'done':
1099                 raise osv.except_osv(_('Error !'), _('You can not add/modify entries in a closed journal.'))
1100         if not result:
1101             journal = journal_obj.browse(cr, uid, journal_id, context=context)
1102             period = period_obj.browse(cr, uid, period_id, context=context)
1103             jour_period_obj.create(cr, uid, {
1104                 'name': (journal.code or journal.name)+':'+(period.name or ''),
1105                 'journal_id': journal.id,
1106                 'period_id': period.id
1107             })
1108         return True
1109
1110     def _update_check(self, cr, uid, ids, context=None):
1111         done = {}
1112         context = context or {}
1113         for line in self.browse(cr, uid, ids, context=context):
1114             if line.move_id.state <> 'draft' and (not line.journal_id.entry_posted):
1115                 raise osv.except_osv(_('Error !'), _('You can not do this modification on a confirmed entry ! Please note that you can just change some non important fields !'))
1116             if line.reconcile_id:
1117                 raise osv.except_osv(_('Error !'), _('You can not do this modification on a reconciled entry ! Please note that you can just change some non important fields !'))
1118             t = (line.journal_id.id, line.period_id.id)
1119             if t not in done:
1120                 self._update_journal_check(cr, uid, line.journal_id.id, line.period_id.id, context)
1121                 done[t] = True
1122         return True
1123
1124     def create(self, cr, uid, vals, context=None, check=True):
1125         account_obj = self.pool.get('account.account')
1126         tax_obj = self.pool.get('account.tax')
1127         move_obj = self.pool.get('account.move')
1128         cur_obj = self.pool.get('res.currency')
1129         journal_obj = self.pool.get('account.journal')
1130         if context is None:
1131             context = {}
1132         if vals.get('move_id', False):
1133             company_id = self.pool.get('account.move').read(cr, uid, vals['move_id'], ['company_id']).get('company_id', False)
1134             if company_id:
1135                 vals['company_id'] = company_id[0]
1136         self._check_date(cr, uid, vals, context, check)
1137         if ('account_id' in vals) and not account_obj.read(cr, uid, vals['account_id'], ['active'])['active']:
1138             raise osv.except_osv(_('Bad account!'), _('You can not use an inactive account!'))
1139         if 'journal_id' in vals:
1140             context['journal_id'] = vals['journal_id']
1141         if 'period_id' in vals:
1142             context['period_id'] = vals['period_id']
1143         if ('journal_id' not in context) and ('move_id' in vals) and vals['move_id']:
1144             m = move_obj.browse(cr, uid, vals['move_id'])
1145             context['journal_id'] = m.journal_id.id
1146             context['period_id'] = m.period_id.id
1147
1148         self._update_journal_check(cr, uid, context['journal_id'], context['period_id'], context)
1149         move_id = vals.get('move_id', False)
1150         journal = journal_obj.browse(cr, uid, context['journal_id'], context=context)
1151         if not move_id:
1152             if journal.centralisation:
1153                 #Check for centralisation
1154                 res = self._check_moves(cr, uid, context)
1155                 if res:
1156                     vals['move_id'] = res[0]
1157             if not vals.get('move_id', False):
1158                 if journal.sequence_id:
1159                     #name = self.pool.get('ir.sequence').get_id(cr, uid, journal.sequence_id.id)
1160                     v = {
1161                         'date': vals.get('date', time.strftime('%Y-%m-%d')),
1162                         'period_id': context['period_id'],
1163                         'journal_id': context['journal_id']
1164                     }
1165                     if vals.get('ref', ''):
1166                         v.update({'ref': vals['ref']})
1167                     move_id = move_obj.create(cr, uid, v, context)
1168                     vals['move_id'] = move_id
1169                 else:
1170                     raise osv.except_osv(_('No piece number !'), _('Can not create an automatic sequence for this piece !\n\nPut a sequence in the journal definition for automatic numbering or create a sequence manually for this piece.'))
1171         ok = not (journal.type_control_ids or journal.account_control_ids)
1172         if ('account_id' in vals):
1173             account = account_obj.browse(cr, uid, vals['account_id'], context=context)
1174             if journal.type_control_ids:
1175                 type = account.user_type
1176                 for t in journal.type_control_ids:
1177                     if type.code == t.code:
1178                         ok = True
1179                         break
1180             if journal.account_control_ids and not ok:
1181                 for a in journal.account_control_ids:
1182                     if a.id == vals['account_id']:
1183                         ok = True
1184                         break
1185             # Automatically convert in the account's secondary currency if there is one and
1186             # the provided values were not already multi-currency
1187             if account.currency_id and 'amount_currency' not in vals and account.currency_id.id != account.company_id.currency_id.id:
1188                 vals['currency_id'] = account.currency_id.id
1189                 ctx = {}
1190                 if 'date' in vals:
1191                     ctx['date'] = vals['date']
1192                 vals['amount_currency'] = cur_obj.compute(cr, uid, account.company_id.currency_id.id,
1193                     account.currency_id.id, vals.get('debit', 0.0)-vals.get('credit', 0.0), context=ctx)
1194         if not ok:
1195             raise osv.except_osv(_('Bad account !'), _('You can not use this general account in this journal !'))
1196
1197         if vals.get('analytic_account_id',False):
1198             if journal.analytic_journal_id:
1199                 vals['analytic_lines'] = [(0,0, {
1200                         'name': vals['name'],
1201                         'date': vals.get('date', time.strftime('%Y-%m-%d')),
1202                         'account_id': vals.get('analytic_account_id', False),
1203                         'unit_amount': vals.get('quantity', 1.0),
1204                         'amount': vals.get('debit', 0.0) or vals.get('credit', 0.0),
1205                         'general_account_id': vals.get('account_id', False),
1206                         'journal_id': journal.analytic_journal_id.id,
1207                         'ref': vals.get('ref', False),
1208                         'user_id': uid
1209             })]
1210
1211         result = super(osv.osv, self).create(cr, uid, vals, context=context)
1212         # CREATE Taxes
1213         if vals.get('account_tax_id', False):
1214             tax_id = tax_obj.browse(cr, uid, vals['account_tax_id'])
1215             total = vals['debit'] - vals['credit']
1216             if journal.refund_journal:
1217                 base_code = 'ref_base_code_id'
1218                 tax_code = 'ref_tax_code_id'
1219                 account_id = 'account_paid_id'
1220                 base_sign = 'ref_base_sign'
1221                 tax_sign = 'ref_tax_sign'
1222             else:
1223                 base_code = 'base_code_id'
1224                 tax_code = 'tax_code_id'
1225                 account_id = 'account_collected_id'
1226                 base_sign = 'base_sign'
1227                 tax_sign = 'tax_sign'
1228             tmp_cnt = 0
1229             for tax in tax_obj.compute_all(cr, uid, [tax_id], total, 1.00).get('taxes'):
1230                 #create the base movement
1231                 if tmp_cnt == 0:
1232                     if tax[base_code]:
1233                         tmp_cnt += 1
1234                         self.write(cr, uid,[result], {
1235                             'tax_code_id': tax[base_code],
1236                             'tax_amount': tax[base_sign] * abs(total)
1237                         })
1238                 else:
1239                     data = {
1240                         'move_id': vals['move_id'],
1241                         'journal_id': vals['journal_id'],
1242                         'period_id': vals['period_id'],
1243                         'name': tools.ustr(vals['name'] or '') + ' ' + tools.ustr(tax['name'] or ''),
1244                         'date': vals['date'],
1245                         'partner_id': vals.get('partner_id',False),
1246                         'ref': vals.get('ref',False),
1247                         'account_tax_id': False,
1248                         'tax_code_id': tax[base_code],
1249                         'tax_amount': tax[base_sign] * abs(total),
1250                         'account_id': vals['account_id'],
1251                         'credit': 0.0,
1252                         'debit': 0.0,
1253                     }
1254                     if data['tax_code_id']:
1255                         self.create(cr, uid, data, context)
1256                 #create the VAT movement
1257                 data = {
1258                     'move_id': vals['move_id'],
1259                     'journal_id': vals['journal_id'],
1260                     'period_id': vals['period_id'],
1261                     'name': tools.ustr(vals['name'] or '') + ' ' + tools.ustr(tax['name'] or ''),
1262                     'date': vals['date'],
1263                     'partner_id': vals.get('partner_id',False),
1264                     'ref': vals.get('ref',False),
1265                     'account_tax_id': False,
1266                     'tax_code_id': tax[tax_code],
1267                     'tax_amount': tax[tax_sign] * abs(tax['amount']),
1268                     'account_id': tax[account_id] or vals['account_id'],
1269                     'credit': tax['amount']<0 and -tax['amount'] or 0.0,
1270                     'debit': tax['amount']>0 and tax['amount'] or 0.0,
1271                 }
1272                 if data['tax_code_id']:
1273                     self.create(cr, uid, data, context)
1274             del vals['account_tax_id']
1275
1276         if check and ((not context.get('no_store_function')) or journal.entry_posted):
1277             tmp = move_obj.validate(cr, uid, [vals['move_id']], context)
1278             if journal.entry_posted and tmp:
1279                 move_obj.button_validate(cr,uid, [vals['move_id']], context)
1280         return result
1281
1282 account_move_line()
1283
1284 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: