[TMP] Commented buggy addition of FP in trunk, to test the branch.

bzr revid: tde@openerp.com-20121112152718-1srt8ej6dxvxoso4
This commit is contained in:
Thibault Delavallée 2012-11-12 16:27:18 +01:00
parent 8f2663415d
commit 65e46e1826
1 changed files with 6 additions and 5 deletions

View File

@ -119,11 +119,12 @@ class account_common_report(osv.osv_memory):
def _get_fiscalyear(self, cr, uid, context=None):
now = time.strftime('%Y-%m-%d')
company_id = None
ids = context.get('active_ids', [])
for wiz in self.browse(cr, uid, ids, context=context):
company_id = wiz.company_id
fiscalyears = self.pool.get('account.fiscalyear').search(cr, uid, [('date_start', '<', now), ('date_stop', '>', now), ('company_id', '=', company_id)], limit=1 )
# company_id = None
# ids = context.get('active_ids', [])
# for wiz in self.browse(cr, uid, ids, context=context):
# company_id = wiz.company_id
# fiscalyears = self.pool.get('account.fiscalyear').search(cr, uid, [('date_start', '<', now), ('date_stop', '>', now), ('company_id', '=', company_id)], limit=1 )
fiscalyears = self.pool.get('account.fiscalyear').search(cr, uid, [('date_start', '<', now), ('date_stop', '>', now)], limit=1 )
return fiscalyears and fiscalyears[0] or False
def _get_all_journal(self, cr, uid, context=None):