bzr revid: fp@tinyerp.com-f2dbf842fa5d93addeebccedf70089856504bd59
This commit is contained in:
Fabien Pinckaers 2007-07-26 07:00:43 +00:00
parent c5b21380c3
commit fa55bf310a
1 changed files with 0 additions and 9 deletions

View File

@ -59,7 +59,6 @@ class account_move_line(osv.osv):
# Compute the current move
move_id = False
partner_id = False
statement_acc_id = False
if context.get('journal_id',False) and context.get('period_id',False):
cr.execute('select move_id \
from \
@ -76,14 +75,6 @@ class account_move_line(osv.osv):
journal_id=%d and period_id=%d and create_uid=%d order by id desc', (context['journal_id'], context['period_id'], uid))
res = cr.fetchone()
data['date'] = res and res[0] or time.strftime('%Y-%m-%d')
cr.execute('select statement_id, account_id \
from \
account_move_line \
where \
journal_id=%d and period_id=%d and statement_id is not null and create_uid=%d order by id desc', (context['journal_id'], context['period_id'], uid))
res = cr.fetchone()
statement_id = res and res[0] or False
statement_acc_id = res and res[1]
if not move_id:
return data