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