[FIX] Account: cannot install Any Chart of Account

lp bug: https://launchpad.net/bugs/735965 fixed

bzr revid: mra@mra-laptop-20110316094846-h0o0srendhztgvve
This commit is contained in:
Mustufa Rangwala 2011-03-16 15:18:46 +05:30
parent 8470bd7fb6
commit 2a69a9e23f
1 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ class account_installer(osv.osv_memory):
}, context=context)
if 'date_start' in res and 'date_stop' in res:
f_ids = fy_obj.search(cr, uid, [('date_start', '<=', res['date_start']), ('date_stop', '>=', res['date_stop']), ('company_id', '=', res['company_id'])], context=context)
f_ids = fy_obj.search(cr, uid, [('date_start', '<=', res['date_start']), ('date_stop', '>=', res['date_stop']), ('company_id', '=', res['company_id'][0])], context=context)
if not f_ids:
name = code = res['date_start'][:4]
if int(name) != int(res['date_stop'][:4]):
@ -224,7 +224,7 @@ class account_installer(osv.osv_memory):
'code': code,
'date_start': res['date_start'],
'date_stop': res['date_stop'],
'company_id': res['company_id']
'company_id': res['company_id'][0]
}
fiscal_id = fy_obj.create(cr, uid, vals, context=context)
if res['period'] == 'month':