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