← Back to team overview

openerp-india team mailing list archive

[Bug 1075900] [NEW] addons/account/account_move_journal.py method wrong usage

 

Public bug reported:

Hello

I found a BUG on addons/account/account_move_journal.py line 101:

period = period_pool.browse(cr, uid, [period_id], ['name'])[0]['name']

It should be like this.

period = period_pool.read(cr, uid, [period_id], ['name'])[0]['name']

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/1075900

Title:
  addons/account/account_move_journal.py method wrong usage

Status in OpenERP Addons (modules):
  New

Bug description:
  Hello

  I found a BUG on addons/account/account_move_journal.py line 101:

  period = period_pool.browse(cr, uid, [period_id], ['name'])[0]['name']

  It should be like this.

  period = period_pool.read(cr, uid, [period_id], ['name'])[0]['name']

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/1075900/+subscriptions


Follow ups

References