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