[IMP] account_voucher: added a a column 'full reconcile' on the voucher lines
[odoo/odoo.git] / addons / account_voucher / account_voucher.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import time
23 from lxml import etree
24
25 import netsvc
26 from osv import osv, fields
27 import decimal_precision as dp
28 from tools.translate import _
29
30
31 class account_voucher(osv.osv):
32     def _check_paid(self, cr, uid, ids, name, args, context=None):
33         res = {}
34         for voucher in self.browse(cr, uid, ids, context=context):
35             ok = True
36             for line in voucher.move_ids:
37                 if (line.account_id.type, 'in', ('receivable', 'payable')) and not line.reconcile_id:
38                     ok = False
39             res[voucher.id] = ok
40         return res
41
42     def _get_type(self, cr, uid, context=None):
43         if context is None:
44             context = {}
45         return context.get('type', False)
46
47     def _get_period(self, cr, uid, context=None):
48         if context is None: context = {}
49         if context.get('period_id', False):
50             return context.get('period_id')
51         periods = self.pool.get('account.period').find(cr, uid)
52         return periods and periods[0] or False
53
54     def _get_journal(self, cr, uid, context=None):
55         if context is None: context = {}
56         journal_pool = self.pool.get('account.journal')
57         invoice_pool = self.pool.get('account.invoice')
58         if context.get('invoice_id', False):
59             currency_id = invoice_pool.browse(cr, uid, context['invoice_id'], context=context).currency_id.id
60             journal_id = journal_pool.search(cr, uid, [('currency', '=', currency_id)], limit=1)
61             return journal_id and journal_id[0] or False
62         if context.get('journal_id', False):
63             return context.get('journal_id')
64         if not context.get('journal_id', False) and context.get('search_default_journal_id', False):
65             return context.get('search_default_journal_id')
66
67         ttype = context.get('type', 'bank')
68         if ttype in ('payment', 'receipt'):
69             ttype = 'bank'
70         res = journal_pool.search(cr, uid, [('type', '=', ttype)], limit=1)
71         return res and res[0] or False
72
73     def _get_tax(self, cr, uid, context=None):
74         if context is None: context = {}
75         journal_pool = self.pool.get('account.journal')
76         journal_id = context.get('journal_id', False)
77         if not journal_id:
78             ttype = context.get('type', 'bank')
79             res = journal_pool.search(cr, uid, [('type', '=', ttype)], limit=1)
80             if not res:
81                 return False
82             journal_id = res[0]
83
84         if not journal_id:
85             return False
86         journal = journal_pool.browse(cr, uid, journal_id, context=context)
87         account_id = journal.default_credit_account_id or journal.default_debit_account_id
88         if account_id and account_id.tax_ids:
89             tax_id = account_id.tax_ids[0].id
90             return tax_id
91         return False
92
93     def _get_payment_rate_currency(self, cr, uid, context=None):
94         if context is None: context = {}
95         journal_pool = self.pool.get('account.journal')
96         journal_id = context.get('journal_id', False)
97         if journal_id:
98             journal = journal_pool.browse(cr, uid, journal_id, context=context)
99             if journal.currency:
100                 return journal.currency.id
101         #no journal given in the context, use company currency as default
102         return self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.currency_id.id
103
104     def _get_currency(self, cr, uid, context=None):
105         if context is None: context = {}
106         journal_pool = self.pool.get('account.journal')
107         journal_id = context.get('journal_id', False)
108         if journal_id:
109             journal = journal_pool.browse(cr, uid, journal_id, context=context)
110             if journal.currency:
111                 return journal.currency.id
112         return False
113
114     def _get_partner(self, cr, uid, context=None):
115         if context is None: context = {}
116         return context.get('partner_id', False)
117
118     def _get_reference(self, cr, uid, context=None):
119         if context is None: context = {}
120         return context.get('reference', False)
121
122     def _get_narration(self, cr, uid, context=None):
123         if context is None: context = {}
124         return context.get('narration', False)
125
126     def _get_amount(self, cr, uid, context=None):
127         if context is None:
128             context= {}
129         return context.get('amount', 0.0)
130
131     def name_get(self, cr, uid, ids, context=None):
132         if not ids:
133             return []
134         if context is None: context = {}
135         return [(r['id'], (str("%.2f" % r['amount']) or '')) for r in self.read(cr, uid, ids, ['amount'], context, load='_classic_write')]
136
137     def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False):
138         mod_obj = self.pool.get('ir.model.data')
139         if context is None: context = {}
140         if not view_id and context.get('invoice_type', False):
141             if context.get('invoice_type', False) in ('out_invoice', 'out_refund'):
142                 result = mod_obj.get_object_reference(cr, uid, 'account_voucher', 'view_vendor_receipt_form')
143             else:
144                 result = mod_obj.get_object_reference(cr, uid, 'account_voucher', 'view_vendor_payment_form')
145             result = result and result[1] or False
146             view_id = result
147         if not view_id and view_type == 'form' and context.get('line_type', False):
148             if context.get('line_type', False) == 'customer':
149                 result = mod_obj.get_object_reference(cr, uid, 'account_voucher', 'view_vendor_receipt_form')
150             else:
151                 result = mod_obj.get_object_reference(cr, uid, 'account_voucher', 'view_vendor_payment_form')
152             result = result and result[1] or False
153             view_id = result
154
155         res = super(account_voucher, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu)
156         doc = etree.XML(res['arch'])
157
158         # replace the label of the field payment_rate
159         currency_obj = self.pool.get('res.currency')
160         base_currency_id = currency_obj.search(cr, uid, [('rate','=',1.0),('rate_ids','=',1.0)], context=context)
161         symbol = base_currency_id and currency_obj.name_get(cr, uid, base_currency_id, context=context)[0][1]
162         string = _("Rate for this operation: 1 %s is") % symbol
163         payment_rate_field = doc.xpath("//field[@name='payment_rate']")
164         for field in payment_rate_field:
165             field.set('string', string)
166
167         if context.get('type', 'sale') in ('purchase', 'payment'):
168             nodes = doc.xpath("//field[@name='partner_id']")
169             for node in nodes:
170                 node.set('domain', "[('supplier', '=', True)]")
171         res['arch'] = etree.tostring(doc)
172         return res
173
174     def _compute_writeoff_amount(self, cr, uid, line_dr_ids, line_cr_ids, amount):
175         debit = credit = 0.0
176         for l in line_dr_ids:
177             debit += l['amount']
178         for l in line_cr_ids:
179             credit += l['amount']
180         return abs(amount - abs(credit - debit))
181
182     def onchange_line_ids(self, cr, uid, ids, line_dr_ids, line_cr_ids, amount, context=None):
183         context = context or {}
184         if not line_dr_ids and not line_cr_ids:
185             return {'value':{}}
186         line_osv = self.pool.get("account.voucher.line")
187         line_dr_ids = resolve_o2m_operations(cr, uid, line_osv, line_dr_ids, ['amount'], context)
188         line_cr_ids = resolve_o2m_operations(cr, uid, line_osv, line_cr_ids, ['amount'], context)
189         return {'value': {'writeoff_amount': self._compute_writeoff_amount(cr, uid, line_dr_ids, line_cr_ids, amount)}}
190
191     def _get_writeoff_amount(self, cr, uid, ids, name, args, context=None):
192         if not ids: return {}
193         res = {}
194         debit = credit = 0.0
195         for voucher in self.browse(cr, uid, ids, context=context):
196             for l in voucher.line_dr_ids:
197                 debit += l.amount
198             for l in voucher.line_cr_ids:
199                 credit += l.amount
200             res[voucher.id] =  abs(voucher.amount - abs(credit - debit))
201         return res
202
203     def _paid_amount_in_company_currency(self, cr, uid, ids, name, args, context=None):
204         if not ids: return {}
205         res = {}
206         debit = credit = 0.0
207         for voucher in self.browse(cr, uid, ids, context=context):
208             rate = voucher.currency_id.rate or voucher.company_id.currency_id.rate
209             if voucher.currency_id == voucher.payment_rate_currency_id:
210                 rate =  voucher.payment_rate
211             res[voucher.id] =  voucher.amount / rate * voucher.company_id.currency_id.rate
212         return res
213
214     _name = 'account.voucher'
215     _description = 'Accounting Voucher'
216     _order = "date desc, id desc"
217 #    _rec_name = 'number'
218     _columns = {
219         'type':fields.selection([
220             ('sale','Sale'),
221             ('purchase','Purchase'),
222             ('payment','Payment'),
223             ('receipt','Receipt'),
224         ],'Default Type', readonly=True, states={'draft':[('readonly',False)]}),
225         'name':fields.char('Memo', size=256, readonly=True, states={'draft':[('readonly',False)]}),
226         'date':fields.date('Date', readonly=True, select=True, states={'draft':[('readonly',False)]}, help="Effective date for accounting entries"),
227         'journal_id':fields.many2one('account.journal', 'Journal', required=True, readonly=True, states={'draft':[('readonly',False)]}),
228         'account_id':fields.many2one('account.account', 'Account', required=True, readonly=True, states={'draft':[('readonly',False)]}),
229         'line_ids':fields.one2many('account.voucher.line','voucher_id','Voucher Lines', readonly=True, states={'draft':[('readonly',False)]}),
230         'line_cr_ids':fields.one2many('account.voucher.line','voucher_id','Credits',
231             domain=[('type','=','cr')], context={'default_type':'cr'}, readonly=True, states={'draft':[('readonly',False)]}),
232         'line_dr_ids':fields.one2many('account.voucher.line','voucher_id','Debits',
233             domain=[('type','=','dr')], context={'default_type':'dr'}, readonly=True, states={'draft':[('readonly',False)]}),
234         'period_id': fields.many2one('account.period', 'Period', required=True, readonly=True, states={'draft':[('readonly',False)]}),
235         'narration':fields.text('Notes', readonly=True, states={'draft':[('readonly',False)]}),
236 #        'currency_id':fields.many2one('res.currency', 'Currency', required=True, readonly=True, states={'draft':[('readonly',False)]}),
237         'currency_id': fields.related('journal_id','currency', type='many2one', relation='res.currency', string='Currency', readonly=True),
238         'company_id': fields.many2one('res.company', 'Company', required=True, readonly=True, states={'draft':[('readonly',False)]}),
239         'state':fields.selection(
240             [('draft','Draft'),
241              ('proforma','Pro-forma'),
242              ('posted','Posted'),
243              ('cancel','Cancelled')
244             ], 'State', readonly=True, size=32,
245             help=' * The \'Draft\' state is used when a user is encoding a new and unconfirmed Voucher. \
246                         \n* The \'Pro-forma\' when voucher is in Pro-forma state,voucher does not have an voucher number. \
247                         \n* The \'Posted\' state is used when user create voucher,a voucher number is generated and voucher entries are created in account \
248                         \n* The \'Cancelled\' state is used when user cancel voucher.'),
249         'amount': fields.float('Total', digits_compute=dp.get_precision('Account'), required=True, readonly=True, states={'draft':[('readonly',False)]}),
250         'tax_amount':fields.float('Tax Amount', digits_compute=dp.get_precision('Account'), readonly=True, states={'draft':[('readonly',False)]}),
251         'reference': fields.char('Ref #', size=64, readonly=True, states={'draft':[('readonly',False)]}, help="Transaction reference number."),
252         'number': fields.char('Number', size=32, readonly=True,),
253         'move_id':fields.many2one('account.move', 'Account Entry'),
254         'move_ids': fields.related('move_id','line_id', type='one2many', relation='account.move.line', string='Journal Items', readonly=True),
255         'partner_id':fields.many2one('res.partner', 'Partner', change_default=1, readonly=True, states={'draft':[('readonly',False)]}),
256         'audit': fields.related('move_id','to_check', type='boolean', help='Check this box if you are unsure of that journal entry and if you want to note it as \'to be reviewed\' by an accounting expert.', relation='account.move', string='To Review'),
257         'paid': fields.function(_check_paid, string='Paid', type='boolean', help="The Voucher has been totally paid."),
258         'pay_now':fields.selection([
259             ('pay_now','Pay Directly'),
260             ('pay_later','Pay Later or Group Funds'),
261         ],'Payment', select=True, readonly=True, states={'draft':[('readonly',False)]}),
262         'tax_id': fields.many2one('account.tax', 'Tax', readonly=True, states={'draft':[('readonly',False)]}, domain=[('price_include','=', False)], help="Only for tax excluded from price"),
263         'pre_line':fields.boolean('Previous Payments ?', required=False),
264         'date_due': fields.date('Due Date', readonly=True, select=True, states={'draft':[('readonly',False)]}),
265         'payment_option':fields.selection([
266                                            ('without_writeoff', 'Keep Open'),
267                                            ('with_writeoff', 'Reconcile Payment Balance'),
268                                            ], 'Payment Difference', required=True, readonly=True, states={'draft': [('readonly', False)]}),
269         'exchange_acc_id': fields.many2one('account.account', 'Exchange Diff. Account', readonly=True, states={'draft': [('readonly', False)]}),
270         'writeoff_acc_id': fields.many2one('account.account', 'Counterpart Account', readonly=True, states={'draft': [('readonly', False)]}),
271         'comment': fields.char('Counterpart Comment', size=64, required=True, readonly=True, states={'draft': [('readonly', False)]}),
272         'analytic_id': fields.many2one('account.analytic.account','Write-Off Analytic Account', readonly=True, states={'draft': [('readonly', False)]}),
273         'writeoff_amount': fields.function(_get_writeoff_amount, string='Reconcile Amount', type='float', readonly=True),
274         'payment_rate_currency_id': fields.many2one('res.currency', 'Payment Rate Currency', required=True, readonly=True, states={'draft':[('readonly',False)]}),
275         'payment_rate': fields.float('Payment Rate', digits=(12,6), required=True, readonly=True, states={'draft': [('readonly', False)]},
276             help='The specific rate that will be used for this voucher for the selected currency.'),
277         'paid_amount_in_company_currency': fields.function(_paid_amount_in_company_currency, string='Paid Amount in Company Currency', type='float', readonly=True),
278     }
279     _defaults = {
280         'period_id': _get_period,
281         'partner_id': _get_partner,
282         'journal_id':_get_journal,
283         'currency_id': _get_currency,
284         'reference': _get_reference,
285         'narration':_get_narration,
286         'amount': _get_amount,
287         'type':_get_type,
288         'state': 'draft',
289         'pay_now': 'pay_later',
290         'name': '',
291         'date': lambda *a: time.strftime('%Y-%m-%d'),
292         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'account.voucher',context=c),
293         'tax_id': _get_tax,
294         'payment_option': 'without_writeoff',
295         'comment': _('Write-Off'),
296         'payment_rate': 1.0,
297         'payment_rate_currency_id': _get_payment_rate_currency,
298     }
299
300     def compute_tax(self, cr, uid, ids, context=None):
301         tax_pool = self.pool.get('account.tax')
302         partner_pool = self.pool.get('res.partner')
303         position_pool = self.pool.get('account.fiscal.position')
304         voucher_line_pool = self.pool.get('account.voucher.line')
305         voucher_pool = self.pool.get('account.voucher')
306         if context is None: context = {}
307
308         for voucher in voucher_pool.browse(cr, uid, ids, context=context):
309             voucher_amount = 0.0
310             for line in voucher.line_ids:
311                 voucher_amount += line.untax_amount or line.amount
312                 line.amount = line.untax_amount or line.amount
313                 voucher_line_pool.write(cr, uid, [line.id], {'amount':line.amount, 'untax_amount':line.untax_amount})
314
315             if not voucher.tax_id:
316                 self.write(cr, uid, [voucher.id], {'amount':voucher_amount, 'tax_amount':0.0})
317                 continue
318
319             tax = [tax_pool.browse(cr, uid, voucher.tax_id.id, context=context)]
320             partner = partner_pool.browse(cr, uid, voucher.partner_id.id, context=context) or False
321             taxes = position_pool.map_tax(cr, uid, partner and partner.property_account_position or False, tax)
322             tax = tax_pool.browse(cr, uid, taxes, context=context)
323
324             total = voucher_amount
325             total_tax = 0.0
326
327             if not tax[0].price_include:
328                 for tax_line in tax_pool.compute_all(cr, uid, tax, voucher_amount, 1).get('taxes', []):
329                     total_tax += tax_line.get('amount', 0.0)
330                 total += total_tax
331             else:
332                 for line in voucher.line_ids:
333                     line_total = 0.0
334                     line_tax = 0.0
335
336                     for tax_line in tax_pool.compute_all(cr, uid, tax, line.untax_amount or line.amount, 1).get('taxes', []):
337                         line_tax += tax_line.get('amount', 0.0)
338                         line_total += tax_line.get('price_unit')
339                     total_tax += line_tax
340                     untax_amount = line.untax_amount or line.amount
341                     voucher_line_pool.write(cr, uid, [line.id], {'amount':line_total, 'untax_amount':untax_amount})
342
343             self.write(cr, uid, [voucher.id], {'amount':total, 'tax_amount':total_tax})
344         return True
345
346     def onchange_price(self, cr, uid, ids, line_ids, tax_id, partner_id=False, context=None):
347         context = context or {}
348         tax_pool = self.pool.get('account.tax')
349         partner_pool = self.pool.get('res.partner')
350         position_pool = self.pool.get('account.fiscal.position')
351         line_pool = self.pool.get('account.voucher.line')
352         res = {
353             'tax_amount': False,
354             'amount': False,
355         }
356         voucher_total = 0.0
357
358         line_ids = resolve_o2m_operations(cr, uid, line_pool, line_ids, ["amount"], context)
359
360         total = 0.0
361         total_tax = 0.0
362         for line in line_ids:
363             line_amount = 0.0
364             line_amount = line.get('amount',0.0)
365             voucher_total += line_amount
366
367         total = voucher_total
368         total_tax = 0.0
369         if tax_id:
370             tax = [tax_pool.browse(cr, uid, tax_id, context=context)]
371             if partner_id:
372                 partner = partner_pool.browse(cr, uid, partner_id, context=context) or False
373                 taxes = position_pool.map_tax(cr, uid, partner and partner.property_account_position or False, tax)
374                 tax = tax_pool.browse(cr, uid, taxes, context=context)
375
376             if not tax[0].price_include:
377                 for tax_line in tax_pool.compute_all(cr, uid, tax, voucher_total, 1).get('taxes', []):
378                     total_tax += tax_line.get('amount')
379                 total += total_tax
380
381         res.update({
382             'amount':total or voucher_total,
383             'tax_amount':total_tax
384         })
385         return {
386             'value':res
387         }
388
389     def onchange_term_id(self, cr, uid, ids, term_id, amount):
390         term_pool = self.pool.get('account.payment.term')
391         terms = False
392         due_date = False
393         default = {'date_due':False}
394         if term_id and amount:
395             terms = term_pool.compute(cr, uid, term_id, amount)
396         if terms:
397             due_date = terms[-1][0]
398             default.update({
399                 'date_due':due_date
400             })
401         return {'value':default}
402
403     def onchange_journal_voucher(self, cr, uid, ids, line_ids=False, tax_id=False, price=0.0, partner_id=False, journal_id=False, ttype=False, company_id=False, context=None):
404         """price
405         Returns a dict that contains new values and context
406
407         @param partner_id: latest value from user input for field partner_id
408         @param args: other arguments
409         @param context: context arguments, like lang, time zone
410
411         @return: Returns a dict which contains new values, and context
412         """
413         default = {
414             'value':{},
415         }
416
417         if not partner_id or not journal_id:
418             return default
419
420         partner_pool = self.pool.get('res.partner')
421         journal_pool = self.pool.get('account.journal')
422
423         journal = journal_pool.browse(cr, uid, journal_id, context=context)
424         partner = partner_pool.browse(cr, uid, partner_id, context=context)
425         account_id = False
426         tr_type = False
427         if journal.type in ('sale','sale_refund'):
428             account_id = partner.property_account_receivable.id
429             tr_type = 'sale'
430         elif journal.type in ('purchase', 'purchase_refund','expense'):
431             account_id = partner.property_account_payable.id
432             tr_type = 'purchase'
433         else:
434             if not journal.default_credit_account_id or not journal.default_debit_account_id:
435                 raise osv.except_osv(_('Error !'), _('Please define default credit/debit account on the %s !') % (journal.name))
436             account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
437             tr_type = 'receipt'
438
439         default['value']['account_id'] = account_id
440         default['value']['type'] = ttype or tr_type
441
442         vals = self.onchange_journal(cr, uid, ids, journal_id, line_ids, tax_id, partner_id, company_id, context)
443         default['value'].update(vals.get('value'))
444
445         return default
446
447     def onchange_rate(self, cr, uid, ids, rate, amount, currency_id, payment_rate_currency_id, company_id, context=None):
448         res =  {'value': {}}
449         if rate and amount and currency_id and currency_id == payment_rate_currency_id:
450             company_rate = self.pool.get('res.company').browse(cr, uid, company_id, context=context).currency_id.rate 
451             res['value']['paid_amount_in_company_currency'] = amount / rate * company_rate
452         return res
453
454     def onchange_amount(self, cr, uid, ids, amount, rate, partner_id, journal_id, currency_id, ttype, date, payment_rate_currency_id, company_id, context=None):
455         if context is None:
456             context = {}
457         res = self.onchange_partner_id(cr, uid, ids, partner_id, journal_id, amount, currency_id, ttype, date, context=context)
458         ctx = context.copy()
459         ctx.update({'date': date})
460         vals = self.onchange_rate(cr, uid, ids, rate, amount, currency_id, payment_rate_currency_id, company_id, context=ctx)
461         for key in vals.keys():
462             res[key].update(vals[key])
463         return res
464
465     def onchange_partner_id(self, cr, uid, ids, partner_id, journal_id, price, currency_id, ttype, date, context=None):
466         """
467         Returns a dict that contains new values and context
468
469         @param partner_id: latest value from user input for field partner_id
470         @param args: other arguments
471         @param context: context arguments, like lang, time zone
472
473         @return: Returns a dict which contains new values, and context
474         """
475         if context is None:
476             context = {}
477         context_multi_currency = context.copy()
478         if date:
479             context_multi_currency.update({'date': date})
480
481         currency_pool = self.pool.get('res.currency')
482         move_line_pool = self.pool.get('account.move.line')
483         partner_pool = self.pool.get('res.partner')
484         journal_pool = self.pool.get('account.journal')
485         line_pool = self.pool.get('account.voucher.line')
486
487         #set default values
488         default = {
489             'value': {'line_ids': [] ,'line_dr_ids': [] ,'line_cr_ids': [] ,'pre_line': False,},
490         }
491
492         #drop existing lines
493         line_ids = ids and line_pool.search(cr, uid, [('voucher_id', '=', ids[0])]) or False
494         if line_ids:
495             line_pool.unlink(cr, uid, line_ids)
496
497         if not partner_id or not journal_id:
498             return default
499
500         journal = journal_pool.browse(cr, uid, journal_id, context=context)
501         partner = partner_pool.browse(cr, uid, partner_id, context=context)
502         currency_id = currency_id or journal.company_id.currency_id.id
503         account_id = False
504         if journal.type in ('sale','sale_refund'):
505             account_id = partner.property_account_receivable.id
506         elif journal.type in ('purchase', 'purchase_refund','expense'):
507             account_id = partner.property_account_payable.id
508         else:
509             account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
510
511         default['value']['account_id'] = account_id
512
513         if journal.type not in ('cash', 'bank'):
514             return default
515
516         total_credit = 0.0
517         total_debit = 0.0
518         account_type = 'receivable'
519         if ttype == 'payment':
520             account_type = 'payable'
521             total_debit = price or 0.0
522         else:
523             total_credit = price or 0.0
524             account_type = 'receivable'
525
526         if not context.get('move_line_ids', False):
527             ids = move_line_pool.search(cr, uid, [('state','=','valid'), ('account_id.type', '=', account_type), ('reconcile_id', '=', False), ('partner_id', '=', partner_id)], context=context)
528         else:
529             ids = context['move_line_ids']
530         invoice_id = context.get('invoice_id', False)
531         company_currency = journal.company_id.currency_id.id
532         move_line_found = False
533
534         #order the lines by most old first
535         ids.reverse()
536         moves = move_line_pool.browse(cr, uid, ids, context=context)
537
538         for line in moves:
539             if line.credit and line.reconcile_partial_id and ttype == 'receipt':
540                 continue
541             if line.debit and line.reconcile_partial_id and ttype == 'payment':
542                 continue
543             if invoice_id:
544                 if line.invoice.id == invoice_id:
545                     #if the invoice linked to the voucher line is equal to the invoice_id in context
546                     #then we assign the amount on that line, whatever the other voucher lines
547                     move_line_found = line.id
548                     break
549             elif currency_id == company_currency:
550                 #otherwise treatments is the same but with other field names
551                 if line.amount_residual == price:
552                     #if the amount residual is equal the amount voucher, we assign it to that voucher
553                     #line, whatever the other voucher lines
554                     move_line_found = line.id
555                     break
556                 #otherwise we will split the voucher amount on each line (by most old first)
557                 total_credit += line.credit or 0.0
558                 total_debit += line.debit or 0.0
559             elif currency_id == line.currency_id.id:
560                 if line.amount_residual_currency == price:
561                     move_line_found = line.id
562                     break
563                 total_credit += line.credit and line.amount_currency or 0.0
564                 total_debit += line.debit and line.amount_currency or 0.0
565
566         #voucher line creation
567         for line in moves:
568             if line.credit and line.reconcile_partial_id and ttype == 'receipt':
569                 continue
570             if line.debit and line.reconcile_partial_id and ttype == 'payment':
571                 continue
572             if line.currency_id and currency_id==line.currency_id.id:
573                 amount_original = abs(line.amount_currency)
574                 amount_unreconciled = abs(line.amount_residual_currency)
575             else:
576                 amount_original = currency_pool.compute(cr, uid, company_currency, currency_id, line.credit or line.debit or 0.0)
577                 amount_unreconciled = currency_pool.compute(cr, uid, company_currency, currency_id, abs(line.amount_residual))
578             rs = {
579                 'name':line.move_id.name,
580                 'type': line.credit and 'dr' or 'cr',
581                 'move_line_id':line.id,
582                 'account_id':line.account_id.id,
583                 'amount_original': amount_original,
584                 'amount': (move_line_found == line.id) and min(price, amount_unreconciled) or 0.0,
585                 'date_original':line.date,
586                 'date_due':line.date_maturity,
587                 'amount_unreconciled': amount_unreconciled,
588             }
589
590             #split voucher amount by most old first, but only for lines in the same currency
591             if not move_line_found:
592                 line_currency_id = line.currency_id and line.currency_id.id or company_currency
593                 if currency_id == line_currency_id:
594                     if line.credit:
595                         amount = min(amount_unreconciled, abs(total_debit))
596                         rs['amount'] = amount
597                         total_debit -= amount
598                     else:
599                         amount = min(amount_unreconciled, abs(total_credit))
600                         rs['amount'] = amount
601                         total_credit -= amount
602
603             if rs['amount_unreconciled'] == rs['amount']:
604                 rs['reconcile'] = True
605
606             if rs['type'] == 'cr':
607                 default['value']['line_cr_ids'].append(rs)
608             else:
609                 default['value']['line_dr_ids'].append(rs)
610
611             if ttype == 'payment' and len(default['value']['line_cr_ids']) > 0:
612                 default['value']['pre_line'] = 1
613             elif ttype == 'receipt' and len(default['value']['line_dr_ids']) > 0:
614                 default['value']['pre_line'] = 1
615             default['value']['writeoff_amount'] = self._compute_writeoff_amount(cr, uid, default['value']['line_dr_ids'], default['value']['line_cr_ids'], price)
616         return default
617
618     def onchange_payment_rate_currency(self, cr, uid, ids, currency_id, payment_rate_currency_id, date, amount, company_id, context=None):
619         if context is None:
620             context = {}
621         res = {'value': {}}
622         #set the default payment rate of the voucher and compute the paid amount in company currency
623         if currency_id and currency_id == payment_rate_currency_id:
624             ctx = context.copy()
625             ctx.update({'date': date})
626             payment_rate = self.pool.get('res.currency').browse(cr, uid, currency_id, context=ctx).rate
627             res['value'].update({'payment_rate': payment_rate})
628             vals = self.onchange_rate(cr, uid, ids, payment_rate, amount, currency_id, payment_rate_currency_id, company_id, context=ctx)
629             for key in vals.keys():
630                 res[key].update(vals[key])
631         return res
632
633     def onchange_date(self, cr, uid, ids, date, currency_id, payment_rate_currency_id, amount, company_id, context=None):
634         """
635         @param date: latest value from user input for field date
636         @param args: other arguments
637         @param context: context arguments, like lang, time zone
638         @return: Returns a dict which contains new values, and context
639         """
640         res = {'value': {}}
641         #FIXME: use find() hereunder
642
643         #set the period of the voucher
644         period_pool = self.pool.get('account.period')
645         pids = period_pool.search(cr, uid, [('date_start', '<=', date), ('date_stop', '>=', date)])
646         if pids:
647             res['value'].update({'period_id':pids[0]})
648         vals = self.onchange_payment_rate_currency(cr, uid, ids, currency_id, payment_rate_currency_id, date, amount, company_id, context=context)
649         for key in vals.keys():
650             res[key].update(vals[key])
651         return res
652
653     def onchange_journal(self, cr, uid, ids, journal_id, line_ids, tax_id, partner_id, date, amount, ttype, company_id, context=None):
654         if not journal_id:
655             return False
656         journal_pool = self.pool.get('account.journal')
657         journal = journal_pool.browse(cr, uid, journal_id, context=context)
658         account_id = journal.default_credit_account_id or journal.default_debit_account_id
659         tax_id = False
660         if account_id and account_id.tax_ids:
661             tax_id = account_id.tax_ids[0].id
662
663         vals = self.onchange_price(cr, uid, ids, line_ids, tax_id, partner_id, context)
664         vals['value'].update({'tax_id':tax_id,'amount': amount})
665         currency_id = False
666         if journal.currency:
667             currency_id = journal.currency.id
668             ctx = context.copy()
669             ctx.update({'date': date})
670             payment_rate = self.pool.get('res.currency').browse(cr, uid, currency_id, context=ctx).rate
671             vals['value'].update({'payment_rate': payment_rate})
672             res = self.onchange_rate(cr, uid, ids, payment_rate, amount, currency_id, currency_id, company_id, context=ctx)
673             for key in res.keys():
674                 vals[key].update(res[key])
675         if currency_id:
676             vals['value'].update({'currency_id': currency_id})
677             vals['value'].update({'payment_rate_currency_id': currency_id})
678         res = self.onchange_partner_id(cr, uid, ids, partner_id, journal_id, amount, currency_id, ttype, date, context)
679         for key in res.keys():
680             vals[key].update(res[key])
681         return vals
682
683     def proforma_voucher(self, cr, uid, ids, context=None):
684         self.action_move_line_create(cr, uid, ids, context=context)
685         return True
686
687     def action_cancel_draft(self, cr, uid, ids, context=None):
688         wf_service = netsvc.LocalService("workflow")
689         for voucher_id in ids:
690             wf_service.trg_create(uid, 'account.voucher', voucher_id, cr)
691         self.write(cr, uid, ids, {'state':'draft'})
692         return True
693
694     def cancel_voucher(self, cr, uid, ids, context=None):
695         reconcile_pool = self.pool.get('account.move.reconcile')
696         move_pool = self.pool.get('account.move')
697
698         for voucher in self.browse(cr, uid, ids, context=context):
699             recs = []
700             for line in voucher.move_ids:
701                 if line.reconcile_id:
702                     recs += [line.reconcile_id.id]
703                 if line.reconcile_partial_id:
704                     recs += [line.reconcile_partial_id.id]
705
706             reconcile_pool.unlink(cr, uid, recs)
707
708             if voucher.move_id:
709                 move_pool.button_cancel(cr, uid, [voucher.move_id.id])
710                 move_pool.unlink(cr, uid, [voucher.move_id.id])
711         res = {
712             'state':'cancel',
713             'move_id':False,
714         }
715         self.write(cr, uid, ids, res)
716         return True
717
718     def unlink(self, cr, uid, ids, context=None):
719         for t in self.read(cr, uid, ids, ['state'], context=context):
720             if t['state'] not in ('draft', 'cancel'):
721                 raise osv.except_osv(_('Invalid action !'), _('Cannot delete Voucher(s) which are already opened or paid !'))
722         return super(account_voucher, self).unlink(cr, uid, ids, context=context)
723
724     def onchange_payment(self, cr, uid, ids, pay_now, journal_id, partner_id, ttype='sale'):
725         res = {}
726         if not partner_id:
727             return res
728         res = {'account_id':False}
729         partner_pool = self.pool.get('res.partner')
730         journal_pool = self.pool.get('account.journal')
731         if pay_now == 'pay_later':
732             partner = partner_pool.browse(cr, uid, partner_id)
733             journal = journal_pool.browse(cr, uid, journal_id)
734             if journal.type in ('sale','sale_refund'):
735                 account_id = partner.property_account_receivable.id
736             elif journal.type in ('purchase', 'purchase_refund','expense'):
737                 account_id = partner.property_account_payable.id
738             else:
739                 account_id = journal.default_credit_account_id.id or journal.default_debit_account_id.id
740             res['account_id'] = account_id
741         return {'value':res}
742
743     def _sel_context(self, cr, uid, voucher_id,context=None):
744         """
745         Select the context to use accordingly if it needs to be multicurrency or not.
746
747         :param voucher_id: Id of the actual voucher
748         :return: The returned context will be the same as given in parameter if the voucher currency is the same
749                  than the company currency, otherwise it's a copy of the parameter with an extra key 'date' containing
750                  the date of the voucher.
751         :rtype: dict
752         """
753         company_currency = self._get_company_currency(cr, uid, voucher_id, context)
754         current_currency = self._get_current_currency(cr, uid, voucher_id, context)
755         if current_currency <> company_currency:
756             context_multi_currency = context.copy()
757             voucher_brw = self.pool.get('account.voucher').browse(cr, uid, voucher_id, context)
758             context_multi_currency.update({'date': voucher_brw.date})
759             return context_multi_currency
760         return context
761
762     def first_move_line_get(self, cr, uid, voucher_id, move_id, company_currency, current_currency, context=None):
763         '''
764         Return a dict to be use to create the first account move line of given voucher.
765
766         :param voucher_id: Id of voucher what we are creating account_move.
767         :param move_id: Id of account move where this line will be added.
768         :param company_currency: id of currency of the company to which the voucher belong
769         :param current_currency: id of currency of the voucher
770         :return: mapping between fieldname and value of account move line to create
771         :rtype: dict
772         '''
773         move_line_obj = self.pool.get('account.move.line')
774         currency_obj = self.pool.get('res.currency')
775         voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
776         debit = credit = 0.0
777         # TODO: is there any other alternative then the voucher type ??
778         # ANSWER: We can have payment and receipt "In Advance".
779         # TODO: Make this logic available.
780         # -for sale, purchase we have but for the payment and receipt we do not have as based on the bank/cash journal we can not know its payment or receipt
781         if voucher_brw.type in ('purchase', 'payment'):
782             credit = voucher_brw.paid_amount_in_company_currency#voucher_brw.amount / voucher_brw.payment_rate * voucher_brw.company_id.currency_id.rate
783         elif voucher_brw.type in ('sale', 'receipt'):
784             debit = voucher_brw.paid_amount_in_company_currency#amount / voucher_brw.payment_rate * voucher_brw.company_id.currency_id.rate
785         if debit < 0: credit = -debit; debit = 0.0
786         if credit < 0: debit = -credit; credit = 0.0
787         sign = debit - credit < 0 and -1 or 1
788         #set the first line of the voucher
789         move_line = {
790                 'name': voucher_brw.name or '/',
791                 'debit': debit,
792                 'credit': credit,
793                 'account_id': voucher_brw.account_id.id,
794                 'move_id': move_id,
795                 'journal_id': voucher_brw.journal_id.id,
796                 'period_id': voucher_brw.period_id.id,
797                 'partner_id': voucher_brw.partner_id.id,
798                 'currency_id': company_currency <> current_currency and  current_currency or False,
799                 'amount_currency': company_currency <> current_currency and sign * voucher_brw.amount or 0.0,
800                 'date': voucher_brw.date,
801                 'date_maturity': voucher_brw.date_due
802             }
803         return move_line
804
805     def account_move_get(self, cr, uid, voucher_id, context=None):
806         '''
807         This method prepare the creation of the account move related to the given voucher.
808
809         :param voucher_id: Id of voucher for which we are creating account_move.
810         :return: mapping between fieldname and value of account move to create
811         :rtype: dict
812         '''
813         move_obj = self.pool.get('account.move')
814         seq_obj = self.pool.get('ir.sequence')
815         voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
816         if voucher_brw.number:
817             name = voucher_brw.number
818         elif voucher_brw.journal_id.sequence_id:
819             name = seq_obj.next_by_id(cr, uid, voucher_brw.journal_id.sequence_id.id)
820         else:
821             raise osv.except_osv(_('Error !'),
822                         _('Please define a sequence on the journal !'))
823         if not voucher_brw.reference:
824             ref = name.replace('/','')
825         else:
826             ref = voucher_brw.reference
827
828         move = {
829             'name': name,
830             'journal_id': voucher_brw.journal_id.id,
831             'narration': voucher_brw.narration,
832             'date': voucher_brw.date,
833             'ref': ref,
834             'period_id': voucher_brw.period_id and voucher_brw.period_id.id or False
835         }
836         return move
837
838     def _get_exchange_lines(self, cr, uid, line, move_id, amount_residual, company_currency, current_currency, context=None):
839         '''
840         Prepare the two lines due to currency rate difference.
841
842         :param line: browse record of the voucher.line for which we want to create currency rate difference accounting entries
843         :param move_id: Account move wher the move lines will be.
844         :param amount_residual: Amount to be posted.
845         :param company_currency: id of currency of the company to which the voucher belong
846         :param current_currency: id of currency of the voucher
847         :return: the account move line and its counterpart to create, depicted as mapping between fieldname and value
848         :rtype: tuple of dict
849         '''
850         if not line.voucher_id.exchange_acc_id.id:
851             raise osv.except_osv(_('Error!'), _('You must provide an account for the exchange difference.'))
852
853         move_line = {
854             'journal_id': line.voucher_id.journal_id.id,
855             'period_id': line.voucher_id.period_id.id,
856             'name': _('change')+': '+(line.name or '/'),
857             'account_id': line.account_id.id,
858             'move_id': move_id,
859             'partner_id': line.voucher_id.partner_id.id,
860             'currency_id': company_currency <> current_currency and current_currency or False,
861             'amount_currency': 0.0,
862             'quantity': 1,
863             'credit': amount_residual > 0 and amount_residual or 0.0,
864             'debit': amount_residual < 0 and -amount_residual or 0.0,
865             'date': line.voucher_id.date,
866         }
867         move_line_counterpart = {
868             'journal_id': line.voucher_id.journal_id.id,
869             'period_id': line.voucher_id.period_id.id,
870             'name': _('change')+': '+(line.name or '/'),
871             'account_id': line.voucher_id.exchange_acc_id.id,
872             'move_id': move_id,
873             'amount_currency': 0.0,
874             'partner_id': line.voucher_id.partner_id.id,
875             'currency_id': company_currency <> current_currency and current_currency or False,
876             'quantity': 1,
877             'debit': amount_residual > 0 and amount_residual or 0.0,
878             'credit': amount_residual < 0 and -amount_residual or 0.0,
879             'date': line.voucher_id.date,
880         }
881         return (move_line, move_line_counterpart)
882
883     def _convert_amount(self, cr, uid, amount, voucher_id, context=None):
884         #TODO: doccument me
885         #TODO: rounding errors
886         currency_obj = self.pool.get('res.currency')
887         voucher = self.browse(cr, uid, voucher_id, context=context)
888         res = amount
889         if voucher.payment_rate_currency_id.id == voucher.company_id.currency_id.id:
890             rate_between_voucher_and_base = voucher.currency_id.rate or 1.0
891             rate_between_base_and_company = voucher.payment_rate or 1.0
892             res = amount / rate_between_voucher_and_base * rate_between_base_and_company
893         elif voucher.payment_rate_currency_id.id == voucher.currency_id.id:
894             rate_between_base_and_company = voucher.company_id.currency_id.rate or 1.0
895             rate_between_voucher_and_base = voucher.payment_rate or 1.0
896             res = amount / rate_between_voucher_and_base * rate_between_base_and_company
897         else:
898             res = currency_obj.compute(cr, uid, voucher.currency_id.id, voucher.company_id.currency_id.id, amount, context=context)
899         return res
900
901     def voucher_move_line_create(self, cr, uid, voucher_id, line_total, move_id, company_currency, current_currency, context=None):
902         '''
903         Create one account move line, on the given account move, per voucher line where amount is not 0.0.
904         It returns Tuple with tot_line what is total of difference between debit and credit and
905         a list of lists with ids to be reconciled with this format (total_deb_cred,list_of_lists).
906
907         :param voucher_id: Voucher id what we are working with
908         :param line_total: Amount of the first line, which correspond to the amount we should totally split among all voucher lines.
909         :param move_id: Account move wher those lines will be joined.
910         :param company_currency: id of currency of the company to which the voucher belong
911         :param current_currency: id of currency of the voucher
912         :return: Tuple build as (remaining amount not allocated on voucher lines, list of account_move_line created in this method)
913         :rtype: tuple(float, list of int)
914         '''
915         if context is None:
916             context = {}
917         move_line_obj = self.pool.get('account.move.line')
918         currency_obj = self.pool.get('res.currency')
919         tot_line = line_total
920         rec_lst_ids = []
921
922         voucher_brw = self.pool.get('account.voucher').browse(cr, uid, voucher_id, context)
923         ctx = context.copy()
924         ctx.update({'date': voucher_brw.date})
925         for line in voucher_brw.line_ids:
926             #create one move line per voucher line where amount is not 0.0
927             if not line.amount:
928                 continue
929             #TODO: comment me
930             amount = self._convert_amount(cr, uid, line.untax_amount or line.amount, voucher_brw.id, context=ctx)
931             #residual amount in company currency
932             #amount_residual = line.move_line_id.amount_residual - amount
933             #TODO: remove me
934             if line.amount == line.amount_unreconciled:
935             #    amount = (line.untax_amount or line.amount) / voucher_brw.payment_rate 
936                 amount_residual = line.move_line_id.amount_residual - amount #residual amount in company currency
937             else:
938             #    amount = (line.untax_amount or line.amount)  / voucher_brw.payment_rate
939                 amount_residual = 0.0
940             move_line = {
941                 'journal_id': voucher_brw.journal_id.id,
942                 'period_id': voucher_brw.period_id.id,
943                 'name': line.name or '/',
944                 'account_id': line.account_id.id,
945                 'move_id': move_id,
946                 'partner_id': voucher_brw.partner_id.id,
947                 'currency_id': company_currency <> current_currency and current_currency or False,
948                 'analytic_account_id': line.account_analytic_id and line.account_analytic_id.id or False,
949                 'quantity': 1,
950                 'credit': 0.0,
951                 'debit': 0.0,
952                 'date': voucher_brw.date
953             }
954             if amount < 0:
955                 amount = -amount
956                 if line.type == 'dr':
957                     line.type = 'cr'
958                 else:
959                     line.type = 'dr'
960
961             if (line.type=='dr'):
962                 tot_line += amount
963                 move_line['debit'] = amount
964             else:
965                 tot_line -= amount
966                 move_line['credit'] = amount
967
968             if voucher_brw.tax_id and voucher_brw.type in ('sale', 'purchase'):
969                 move_line.update({
970                     'account_tax_id': voucher_brw.tax_id.id,
971                 })
972
973             if move_line.get('account_tax_id', False):
974                 tax_data = tax_obj.browse(cr, uid, [move_line['account_tax_id']], context=context)[0]
975                 if not (tax_data.base_code_id and tax_data.tax_code_id):
976                     raise osv.except_osv(_('No Account Base Code and Account Tax Code!'),_("You have to configure account base code and account tax code on the '%s' tax!") % (tax_data.name))
977
978             sign = (move_line['debit'] - move_line['credit']) < 0 and -1 or 1
979             move_line['amount_currency'] = company_currency <> current_currency and sign * line.amount or False
980             voucher_line = move_line_obj.create(cr, uid, move_line)
981             rec_ids = [voucher_line, line.move_line_id.id]
982
983             if amount_residual:
984                 # Change difference entry
985                 exch_lines = self._get_exchange_lines(cr, uid, line, move_id, amount_residual, company_currency, current_currency, context=context)
986                 new_id = move_line_obj.create(cr, uid, exch_lines[0],context)
987                 move_line_obj.create(cr, uid, exch_lines[1], context)
988                 rec_ids.append(new_id)
989
990             if line.move_line_id.id:
991                 rec_lst_ids.append(rec_ids)
992
993         return (tot_line, rec_lst_ids)
994
995     def writeoff_move_line_get(self, cr, uid, voucher_id, line_total, move_id, name, company_currency, current_currency, context=None):
996         '''
997         Set a dict to be use to create the writeoff move line.
998
999         :param voucher_id: Id of voucher what we are creating account_move.
1000         :param line_total: Amount remaining to be allocated on lines.
1001         :param move_id: Id of account move where this line will be added.
1002         :param name: Description of account move line.
1003         :param company_currency: id of currency of the company to which the voucher belong
1004         :param current_currency: id of currency of the voucher
1005         :return: mapping between fieldname and value of account move line to create
1006         :rtype: dict
1007         '''
1008         move_line_obj = self.pool.get('account.move.line')
1009         currency_obj = self.pool.get('res.currency')
1010         move_line = {}
1011
1012         voucher_brw = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1013         current_currency_obj = voucher_brw.currency_id or voucher_brw.journal_id.company_id.currency_id
1014
1015         if not currency_obj.is_zero(cr, uid, current_currency_obj, line_total):
1016             diff = line_total
1017             account_id = False
1018             write_off_name = ''
1019             if voucher_brw.payment_option == 'with_writeoff':
1020                 account_id = voucher_brw.writeoff_acc_id.id
1021                 write_off_name = voucher_brw.comment
1022             elif voucher_brw.type in ('sale', 'receipt'):
1023                 account_id = voucher_brw.partner_id.property_account_receivable.id
1024             else:
1025                 account_id = voucher_brw.partner_id.property_account_payable.id
1026             move_line = {
1027                 'name': write_off_name or name,
1028                 'account_id': account_id,
1029                 'move_id': move_id,
1030                 'partner_id': voucher_brw.partner_id.id,
1031                 'date': voucher_brw.date,
1032                 'credit': diff > 0 and diff or 0.0,
1033                 'debit': diff < 0 and -diff or 0.0,
1034                 'amount_currency': company_currency <> current_currency and voucher_brw.writeoff_amount or False,
1035                 'currency_id': company_currency <> current_currency and current_currency or False,
1036             }
1037
1038         return move_line
1039
1040     def _get_company_currency(self, cr, uid, voucher_id, context=None):
1041         '''
1042         Get the currency of the actual company.
1043
1044         :param voucher_id: Id of the voucher what i want to obtain company currency.
1045         :return: currency id of the company of the voucher
1046         :rtype: int
1047         '''
1048         return self.pool.get('account.voucher').browse(cr,uid,voucher_id,context).journal_id.company_id.currency_id.id
1049
1050     def _get_current_currency(self, cr, uid, voucher_id, context=None):
1051         '''
1052         Get the currency of the voucher.
1053
1054         :param voucher_id: Id of the voucher what i want to obtain current currency.
1055         :return: currency id of the voucher
1056         :rtype: int
1057         '''
1058         voucher = self.pool.get('account.voucher').browse(cr,uid,voucher_id,context)
1059         return voucher.currency_id.id or self._get_company_currency(cr,uid,voucher.id,context)
1060
1061     def action_move_line_create(self, cr, uid, ids, context=None):
1062         '''
1063         Confirm the vouchers given in ids and create the journal entries for each of them
1064         '''
1065         if context is None:
1066             context = {}
1067         move_pool = self.pool.get('account.move')
1068         move_line_pool = self.pool.get('account.move.line')
1069         currency_pool = self.pool.get('res.currency')
1070         tax_obj = self.pool.get('account.tax')
1071         seq_obj = self.pool.get('ir.sequence')
1072         for voucher in self.browse(cr, uid, ids, context=context):
1073             if voucher.move_id:
1074                 continue
1075             #TODO: -need to check- Can't we just use the context returned by _sel_context?
1076             ctx = context.copy()
1077             ctx.update({'date': voucher.date})
1078             company_currency = self._get_company_currency(cr, uid, voucher.id, context)
1079             current_currency = self._get_current_currency(cr, uid, voucher.id, context)
1080             context = self._sel_context(cr, uid, voucher.id, context)
1081             #Create the account move record.
1082             move_id = move_pool.create(cr, uid, self.account_move_get(cr, uid, voucher.id, context=context), context=context)
1083             # Get the name of the account_move just created
1084             name = move_pool.browse(cr, uid, move_id, context=context).name
1085             #Create the first line of the voucher
1086             move_line_id = move_line_pool.create(cr, uid, self.first_move_line_get(cr,uid,voucher.id, move_id, company_currency, current_currency, context), context)
1087             move_line_brw = move_line_pool.browse(cr, uid, move_line_id, context=context)
1088             line_total = move_line_brw.debit - move_line_brw.credit
1089             rec_list_ids = []
1090             if voucher.type == 'sale':
1091                 line_total = line_total - self._convert_amount(cr, uid, voucher.tax_amount, voucher.id, context=ctx)
1092             elif voucher.type == 'purchase':
1093                 line_total = line_total + self._convert_amount(cr, uid, voucher.tax_amount, voucher.id, context=ctx)
1094             #create one move line per voucher line where amount is not 0.0
1095             line_total, rec_list_ids = self.voucher_move_line_create(cr, uid, voucher.id, line_total, move_id, company_currency, current_currency, context)
1096
1097             #create the writeoff line if needed
1098             ml_writeoff = self.writeoff_move_line_get(cr, uid, voucher.id, line_total, move_id, name, company_currency, current_currency, context)
1099             if ml_writeoff:
1100                 ml_writeoff_id = move_line_pool.create(cr, uid, ml_writeoff, context)
1101             #We post the voucher.
1102             self.write(cr, uid, [voucher.id], {
1103                 'move_id': move_id,
1104                 'state': 'posted',
1105                 'number': name,
1106             })
1107             if voucher.journal_id.entry_posted:
1108                 move_pool.post(cr, uid, [move_id], context={})
1109             #We automatically reconcile the account move lines.
1110             for rec_ids in rec_list_ids:
1111                 if len(rec_ids) >= 2:
1112                     move_line_pool.reconcile_partial(cr, uid, rec_ids, writeoff_acc_id=voucher.exchange_acc_id.id, writeoff_period_id=voucher.period_id.id, writeoff_journal_id=voucher.journal_id.id)
1113         return True
1114
1115     def copy(self, cr, uid, id, default={}, context=None):
1116         default.update({
1117             'state': 'draft',
1118             'number': False,
1119             'move_id': False,
1120             'line_cr_ids': False,
1121             'line_dr_ids': False,
1122             'reference': False
1123         })
1124         if 'date' not in default:
1125             default['date'] = time.strftime('%Y-%m-%d')
1126         return super(account_voucher, self).copy(cr, uid, id, default, context)
1127
1128 account_voucher()
1129
1130 class account_voucher_line(osv.osv):
1131     _name = 'account.voucher.line'
1132     _description = 'Voucher Lines'
1133     _order = "move_line_id"
1134
1135     # If the payment is in the same currency than the invoice, we keep the same amount
1136     # Otherwise, we compute from company currency to payment currency
1137     def _compute_balance(self, cr, uid, ids, name, args, context=None):
1138         currency_pool = self.pool.get('res.currency')
1139         rs_data = {}
1140         for line in self.browse(cr, uid, ids, context=context):
1141             ctx = context.copy()
1142             ctx.update({'date': line.voucher_id.date})
1143             res = {}
1144             company_currency = line.voucher_id.journal_id.company_id.currency_id.id
1145             voucher_currency = line.voucher_id.currency_id and line.voucher_id.currency_id.id or company_currency
1146             move_line = line.move_line_id or False
1147
1148             if not move_line:
1149                 res['amount_original'] = 0.0
1150                 res['amount_unreconciled'] = 0.0
1151             elif move_line.currency_id and voucher_currency==move_line.currency_id.id:
1152                 res['amount_original'] = currency_pool.compute(cr, uid, move_line.currency_id.id, voucher_currency, abs(move_line.amount_currency), context=ctx)
1153                 res['amount_unreconciled'] = currency_pool.compute(cr, uid, move_line.currency_id and move_line.currency_id.id or company_currency, voucher_currency, abs(move_line.amount_residual_currency), context=ctx)
1154             elif move_line and move_line.credit > 0:
1155                 res['amount_original'] = currency_pool.compute(cr, uid, company_currency, voucher_currency, move_line.credit, context=ctx)
1156                 res['amount_unreconciled'] = currency_pool.compute(cr, uid, company_currency, voucher_currency, abs(move_line.amount_residual), context=ctx)
1157             else:
1158                 res['amount_original'] = currency_pool.compute(cr, uid, company_currency, voucher_currency, move_line.debit, context=ctx)
1159                 res['amount_unreconciled'] = currency_pool.compute(cr, uid, company_currency, voucher_currency, abs(move_line.amount_residual), context=ctx)
1160
1161             rs_data[line.id] = res
1162         return rs_data
1163
1164     _columns = {
1165         'voucher_id':fields.many2one('account.voucher', 'Voucher', required=1, ondelete='cascade'),
1166         'name':fields.char('Description', size=256),
1167         'account_id':fields.many2one('account.account','Account', required=True),
1168         'partner_id':fields.related('voucher_id', 'partner_id', type='many2one', relation='res.partner', string='Partner'),
1169         'untax_amount':fields.float('Untax Amount'),
1170         'amount':fields.float('Amount', digits_compute=dp.get_precision('Account')),
1171         'reconcile': fields.boolean('Full Reconcile'),
1172         'type':fields.selection([('dr','Debit'),('cr','Credit')], 'Dr/Cr'),
1173         'account_analytic_id':  fields.many2one('account.analytic.account', 'Analytic Account'),
1174         'move_line_id': fields.many2one('account.move.line', 'Journal Item'),
1175         'date_original': fields.related('move_line_id','date', type='date', relation='account.move.line', string='Date', readonly=1),
1176         'date_due': fields.related('move_line_id','date_maturity', type='date', relation='account.move.line', string='Due Date', readonly=1),
1177         'amount_original': fields.function(_compute_balance, multi='dc', type='float', string='Original Amount', store=True),
1178         'amount_unreconciled': fields.function(_compute_balance, multi='dc', type='float', string='Open Balance', store=True),
1179         'company_id': fields.related('voucher_id','company_id', relation='res.company', type='many2one', string='Company', store=True, readonly=True),
1180     }
1181     _defaults = {
1182         'name': '',
1183         'reconcile': False,
1184     }
1185
1186     def onchange_reconcile(self, cr, uid, ids, reconcile, amount, amount_unreconciled, context=None):
1187         vals = { 'amount': 0.0}
1188         if reconcile:
1189             vals = { 'amount': amount_unreconciled}
1190         return {'value': vals}
1191
1192     def onchange_amount(self, cr, uid, ids, amount, amount_unreconciled, context=None):
1193         vals = {}
1194         if amount:
1195             vals['reconcile'] = (amount == amount_unreconciled)
1196         return {'value': vals}
1197
1198     def onchange_move_line_id(self, cr, user, ids, move_line_id, context=None):
1199         """
1200         Returns a dict that contains new values and context
1201
1202         @param move_line_id: latest value from user input for field move_line_id
1203         @param args: other arguments
1204         @param context: context arguments, like lang, time zone
1205
1206         @return: Returns a dict which contains new values, and context
1207         """
1208         res = {}
1209         move_line_pool = self.pool.get('account.move.line')
1210         if move_line_id:
1211             move_line = move_line_pool.browse(cr, user, move_line_id, context=context)
1212             if move_line.credit:
1213                 ttype = 'dr'
1214             else:
1215                 ttype = 'cr'
1216             account_id = move_line.account_id.id
1217             res.update({
1218                 'account_id':account_id,
1219                 'type': ttype
1220             })
1221         return {
1222             'value':res,
1223         }
1224
1225     def default_get(self, cr, user, fields_list, context=None):
1226         """
1227         Returns default values for fields
1228         @param fields_list: list of fields, for which default values are required to be read
1229         @param context: context arguments, like lang, time zone
1230
1231         @return: Returns a dict that contains default values for fields
1232         """
1233         if context is None:
1234             context = {}
1235         journal_id = context.get('journal_id', False)
1236         partner_id = context.get('partner_id', False)
1237         journal_pool = self.pool.get('account.journal')
1238         partner_pool = self.pool.get('res.partner')
1239         values = super(account_voucher_line, self).default_get(cr, user, fields_list, context=context)
1240         if (not journal_id) or ('account_id' not in fields_list):
1241             return values
1242         journal = journal_pool.browse(cr, user, journal_id, context=context)
1243         account_id = False
1244         ttype = 'cr'
1245         if journal.type in ('sale', 'sale_refund'):
1246             account_id = journal.default_credit_account_id and journal.default_credit_account_id.id or False
1247             ttype = 'cr'
1248         elif journal.type in ('purchase', 'expense', 'purchase_refund'):
1249             account_id = journal.default_debit_account_id and journal.default_debit_account_id.id or False
1250             ttype = 'dr'
1251         elif partner_id:
1252             partner = partner_pool.browse(cr, user, partner_id, context=context)
1253             if context.get('type') == 'payment':
1254                 ttype = 'dr'
1255                 account_id = partner.property_account_payable.id
1256             elif context.get('type') == 'receipt':
1257                 account_id = partner.property_account_receivable.id
1258
1259         values.update({
1260             'account_id':account_id,
1261             'type':ttype
1262         })
1263         return values
1264 account_voucher_line()
1265
1266 class account_bank_statement(osv.osv):
1267     _inherit = 'account.bank.statement'
1268
1269     def button_cancel(self, cr, uid, ids, context=None):
1270         voucher_obj = self.pool.get('account.voucher')
1271         for st in self.browse(cr, uid, ids, context=context):
1272             voucher_ids = []
1273             for line in st.line_ids:
1274                 if line.voucher_id:
1275                     voucher_ids.append(line.voucher_id.id)
1276             voucher_obj.cancel_voucher(cr, uid, voucher_ids, context)
1277         return super(account_bank_statement, self).button_cancel(cr, uid, ids, context=context)
1278
1279     def create_move_from_st_line(self, cr, uid, st_line_id, company_currency_id, next_number, context=None):
1280         voucher_obj = self.pool.get('account.voucher')
1281         wf_service = netsvc.LocalService("workflow")
1282         move_line_obj = self.pool.get('account.move.line')
1283         bank_st_line_obj = self.pool.get('account.bank.statement.line')
1284         st_line = bank_st_line_obj.browse(cr, uid, st_line_id, context=context)
1285         if st_line.voucher_id:
1286             voucher_obj.write(cr, uid, [st_line.voucher_id.id], {'number': next_number}, context=context)
1287             if st_line.voucher_id.state == 'cancel':
1288                 voucher_obj.action_cancel_draft(cr, uid, [st_line.voucher_id.id], context=context)
1289             wf_service.trg_validate(uid, 'account.voucher', st_line.voucher_id.id, 'proforma_voucher', cr)
1290
1291             v = voucher_obj.browse(cr, uid, st_line.voucher_id.id, context=context)
1292             bank_st_line_obj.write(cr, uid, [st_line_id], {
1293                 'move_ids': [(4, v.move_id.id, False)]
1294             })
1295
1296             return move_line_obj.write(cr, uid, [x.id for x in v.move_ids], {'statement_id': st_line.statement_id.id}, context=context)
1297         return super(account_bank_statement, self).create_move_from_st_line(cr, uid, st_line.id, company_currency_id, next_number, context=context)
1298
1299 account_bank_statement()
1300
1301 class account_bank_statement_line(osv.osv):
1302     _inherit = 'account.bank.statement.line'
1303
1304     def _amount_reconciled(self, cursor, user, ids, name, args, context=None):
1305         if not ids:
1306             return {}
1307         res = {}
1308         for line in self.browse(cursor, user, ids, context=context):
1309             if line.voucher_id:
1310                 res[line.id] = line.voucher_id.amount#
1311             else:
1312                 res[line.id] = 0.0
1313         return res
1314
1315     def _check_amount(self, cr, uid, ids, context=None):
1316         for obj in self.browse(cr, uid, ids, context=context):
1317             if obj.voucher_id:
1318                 diff = abs(obj.amount) - obj.voucher_id.amount
1319                 if not self.pool.get('res.currency').is_zero(cr, uid, obj.statement_id.currency, diff):
1320                     return False
1321         return True
1322
1323     _constraints = [
1324         (_check_amount, 'The amount of the voucher must be the same amount as the one on the statement line', ['amount']),
1325     ]
1326
1327     _columns = {
1328         'amount_reconciled': fields.function(_amount_reconciled,
1329             string='Amount reconciled', type='float'),
1330         'voucher_id': fields.many2one('account.voucher', 'Payment'),
1331     }
1332
1333     def unlink(self, cr, uid, ids, context=None):
1334         voucher_obj = self.pool.get('account.voucher')
1335         statement_line = self.browse(cr, uid, ids, context=context)
1336         unlink_ids = []
1337         for st_line in statement_line:
1338             if st_line.voucher_id:
1339                 unlink_ids.append(st_line.voucher_id.id)
1340         voucher_obj.unlink(cr, uid, unlink_ids, context=context)
1341         return super(account_bank_statement_line, self).unlink(cr, uid, ids, context=context)
1342
1343 account_bank_statement_line()
1344
1345 def resolve_o2m_operations(cr, uid, target_osv, operations, fields, context):
1346     results = []
1347     for operation in operations:
1348         result = None
1349         if not isinstance(operation, (list, tuple)):
1350             result = target_osv.read(cr, uid, operation, fields, context=context)
1351         elif operation[0] == 0:
1352             # may be necessary to check if all the fields are here and get the default values?
1353             result = operation[2]
1354         elif operation[0] == 1:
1355             result = target_osv.read(cr, uid, operation[1], fields, context=context)
1356             result.update(operation[2])
1357         elif operation[0] == 4:
1358             result = target_osv.read(cr, uid, operation[1], fields, context=context)
1359         if result != None:
1360             results.append(result)
1361     return results
1362
1363 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: