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