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