c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #34107
[Bug 868954] [NEW] account-fixed-assets periodical processing error
Public bug reported:
Tehere are error when computing assets Accounting/Periodical
Processing/Assets Calculation/Compute assets, if accounting period is
defined other than month - e.g. 3month.
Change to fix this: in account_asset.py line 806
- period = period_obj.browse(cr, uid, period_id[0], context=context)
+ period_id = isinstance(period_id, list) and period_id[0] or period_id
+ period = period_obj.browse(cr, uid, period_id, context=context)
** Affects: openobject-addons
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to OpenERP Project Group.
https://bugs.launchpad.net/bugs/868954
Title:
account-fixed-assets periodical processing error
Status in OpenERP Addons (modules):
New
Bug description:
Tehere are error when computing assets Accounting/Periodical
Processing/Assets Calculation/Compute assets, if accounting period is
defined other than month - e.g. 3month.
Change to fix this: in account_asset.py line 806
- period = period_obj.browse(cr, uid, period_id[0], context=context)
+ period_id = isinstance(period_id, list) and period_id[0] or period_id
+ period = period_obj.browse(cr, uid, period_id, context=context)
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/868954/+subscriptions
Follow ups
References